Given one would define: A =: 1 2 3 4 B =: 10 20 30 40 C =: 100 200 300 400
How would one define the set:
bigSet =: 0.5 A B C 1000.5
in such a way that the cardinality, that is '# bigSet' is 5
using normal (what is normal to me) math notation:
bigSet = { 0.5 { 1 2 3 4 } { 10 20 30 40 } { 100 200 300 400
} 1000.5 }
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm
