Scilab 5.3.3
- Scilab help
- Matlab to Scilab Conversion Tips
- Matlab-Scilab equivalents
- R
- rand (Matlab function)
- randn (Matlab function)
- rcond (Matlab function)
- real (Matlab function)
- realmax (Matlab function)
- realmin (Matlab function)
- rem (Matlab function)
- repmat (Matlab function)
- reshape (Matlab function)
- return (Matlab function)
- round (Matlab function)
Scilab help >> Matlab to Scilab Conversion Tips > Matlab-Scilab equivalents > R > repmat (Matlab function)
repmat (Matlab function)
Replicate and tile an array
Matlab/Scilab equivalent
| Matlab | Scilab |
repmat |
No equivalent |
Particular cases
There is no Scilab equivalent function for Matlab repmat but it can be replaced by the following expressions (considering m and n being real values):
- repmat(A,m) with m a scalar:
can be replaced by ones(m,m).*.A if A is of Double type, by ones(m,m).*.bool2s(A) if A is of Boolean type and by asciimat(ones(m,m).*.asciimat(A) if A is of String type
- repmat(A,m) with m a vector:
can be replaced by ones(m(1),m(2),...).*.A is of Double type, by ones(m(1),m(2),...).*.bool2s(A) if A is of Boolean type and by asciimat(ones(m(1),m(2),...).*.asciimat(A) if A is of String type
- repmat(A,m,n):
can be replaced by ones(m,n).*.A if A is of Double type, by ones(m,n).*.bool2s(A) if A is of Boolean type and by asciimat(ones(m,n).*.asciimat(A) if A is of String type
| << rem (Matlab function) | R | reshape (Matlab function) >> |