MxFromString
- creates a new matrix out of string

Matrix functions
(AmiBroker 6.10)


SYNTAX MxFromString(''string'')
RETURNS Matrix
FUNCTION creates a new matrix out of string in
  • Mathematica/Wolfram list-style: "{ { 1, 2, 3 }, { 4, 5, 6 } }", or
  • Matlab/Maple style "[ [ 1, 2, 3 ], [ 4, 5, 6 ] ]", or
  • GNU Octave comma-semicolon style [ 1, 2, 3; 4, 5, 6 ]
EXAMPLE mx = MxFromString("{ { 1, 2, 3 }, { 4, 5, 6 } }" );
SEE ALSO Matrix() function , MxToString() function

References:

The MxFromString function is used in the following formulas in AFL on-line library:

More information:

See updated/extended version on-line.