scilab: remove example matrix2 warnings
This commit is contained in:
parent
1f6b71b47b
commit
7cd7166991
1 changed files with 4 additions and 4 deletions
|
|
@ -12,8 +12,8 @@ s = sumDoubleMatrix(doubleMatrix);
|
|||
disp(s);
|
||||
|
||||
disp("Call lib function squareDoubleMatrix()");
|
||||
squareDoubleMatrix = squareDoubleMatrix(doubleMatrix);
|
||||
disp(squareDoubleMatrix);
|
||||
sqrd = squareDoubleMatrix(doubleMatrix);
|
||||
disp(sqrd);
|
||||
|
||||
|
||||
// Test lib integer matrix functions
|
||||
|
|
@ -27,8 +27,8 @@ s = sumIntegerMatrix(integerMatrix);
|
|||
disp(s);
|
||||
|
||||
disp("Call lib function squareIntegerMatrix()");
|
||||
squareIntegerMatrix = squareIntegerMatrix(integerMatrix);
|
||||
disp(squareIntegerMatrix);
|
||||
sqri = squareIntegerMatrix(integerMatrix);
|
||||
disp(sqri);
|
||||
|
||||
|
||||
// Test lib string matrix functions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue