How can I store .NET arrays in a matrix without converting them to another data type?
If I have
A = NET.createArray('System.Int16', n);
B = NET.createArray('System.Int16', n);
How to do I store these in the same matrix without first converting them to another data type such as double
or int16
etc
So I can access them by
data(1) outputs A
data(2) outputs B
This is a more specific question relating to my original question: Preallocating a Matrix of .NET Arrays