Maximum
Matlab max function can work with complexes, what Scilab max can not, so a emulation function called mtlb_max has been written.
Note that in Scilab, second input parameter can give the dimension to use to find the maximum values or another matrix (maximum of two matrices), in Matlab, dimension parameter is given in a third input parameter (in this case, second parameter must be []).
:
Matlab Scilab
A = [1,2,3;4,5,6]
C = `max`_(A)
C = [4,5,6]
C = `max`_(A,[],1)
C = [4,5,6]
B = [7,8,9;2,3,4]
C = `max`_(A,B)
C = [7,8,9;4,5,6]
A = [1,2,3;4,5,6]
C = `max`_(A)
C = 6
C = `max`_(A,"r")
C = [4,5,6]
B = [7,8,9;2,3,4]
C = `max`_(A,B)
C = [7,8,9;4,5,6]