How to deal with the empty matrix?
The empty matrix is ββan object that should be used sparingly in Scilab. It can be used to initialize a vector or a matrix whose size increases with each step of an algorithm, such as for example
u = [];
for n = 1:4
u…
|