NaN predicate operation
rop = mps_isnan( op )
Scilab matrix of boolean
multi-precision matrix
Return a Scilab boolean matrix the same size as op. Elements of rop are True if the corresponding element of op is not a number(NaN).
op
rop
// Standard usage. A = [1 -2; %inf -4] mpsA = mps_init2(A,100) r = mps_isnan(mpsA)