Name
blanks — (Matlab function) A string of blanks
Particular cases
There is no Scilab equivalent function for Matlab box but it can be easyly replaced by Scilab equivalent instructions.
Examples
|
Matlab
|
Scilab
|
A = ['xxx' blanks(20) 'yyy'];
|
A = "xxx"+part(" ",ones(1,20))+"yyy";
|