Detect elements that are ASCII white spaces
isspace
No equivalent
There is no equivalent function to Matlab isspace function in Scilab. However it can be replaced as shown below.
tf = isspace(A)
// If A is a String matrix: tf = asciimat(A)==32 // If A is not a String matrix: tf = zeros(A)