01-09-2009 06:45 PM
Solved! Go to Solution.
01-10-2009 12:22 AM
Hi,
In MathScript, you can use
A = [];
to create an emtpy matrix and fill it later.
Also, you can use
A = zeros(10);
to create a 10-by-10 matrix filled with zero.
01-11-2009 04:43 PM