Matrix Reshape
The RESHAPE block changes the dimensions of a matrix or a vector to another dimensions specified by the user in the output size desired parameter.The dimensions of the output must be less or equal to the input size given by the input size parameter.
The equivalent function of this block in Scilab is `matrix`_. (Warning : You have to specify both output dimensions explicitly and don’t use -1 to specify a dimension that must be calculated as in `matrix`_).
u=[1 2 3 4;5 6 7 8]
When the output desired is [1;6] the output is:
y=[1 2 3 4 5 6]