Difference between revisions of "Array.across()"
Jump to navigation
Jump to search
Line 15: | Line 15: | ||
Returns the across elements of Magic Square(3) and its Transpose. | Returns the across elements of Magic Square(3) and its Transpose. | ||
+ | |||
+ | |||
+ | ==See Also== | ||
+ | [[Array.X$() | X$]] | ||
+ | |||
+ | [[Array.$X() |$X]] |
Latest revision as of 04:19, 17 April 2020
Array.across(SomeOtherArray, SomeFunction)
Array across operation. Use the function to merge the two pairs. Operates like a tensor multiplication.
a=MS(3)
b=MS(3)~
a.across(b);
Returns the across elements of Magic Square(3) and its Transpose.