Diagonal including or extracting
Due to the fact that strings or not considered in the same way in Matlab and in Scilab, results are not equal if A is a string matrix or vector in diag(A) or diag(A,k).
Note that mtlb_diag can emulate this particularity in Scilab.
Matlab Scilab
B = `diag`_('str')
B = ['s ';' t ';' r']
B = `diag`_("str")
B = "str"
B = `mtlb_diag`_("str")
B = ["s ";" t ";" r"]