- Scilab help
- Compatibility Functions
- asciimat
- firstnonsingleton
- makecell
- mstr2sci
- mtlb_0
- mtlb_a
- mtlb_all
- mtlb_any
- mtlb_axis
- mtlb_beta
- mtlb_box
- mtlb_close
- mtlb_colordef
- mtlb_conv
- mtlb_cumprod
- mtlb_cumsum
- mtlb_dec2hex
- mtlb_delete
- mtlb_diag
- mtlb_diff
- mtlb_dir
- mtlb_double
- mtlb_e
- mtlb_echo
- mtlb_eval
- mtlb_exist
- mtlb_eye
- mtlb_false
- mtlb_fft
- mtlb_fftshift
- mtlb_find
- mtlb_findstr
- mtlb_fliplr
- mtlb_fopen
- mtlb_format
- mtlb_fprintf
- mtlb_fread
- mtlb_fscanf
- mtlb_full
- mtlb_fwrite
- mtlb_grid
- mtlb_hold
- mtlb_i
- mtlb_ifft
- mtlb_imp
- mtlb_int16
- mtlb_int32
- mtlb_int8
- mtlb_is
- mtlb_isa
- mtlb_isfield
- mtlb_isletter
- mtlb_isspace
- mtlb_l
- mtlb_legendre
- mtlb_linspace
- mtlb_logic
- mtlb_logical
- mtlb_lower
- mtlb_max
- mtlb_min
- mtlb_more
- mtlb_num2str
- mtlb_ones
- mtlb_plot
- mtlb_prod
- mtlb_rand
- mtlb_randn
- mtlb_rcond
- mtlb_realmax
- mtlb_realmin
- mtlb_repmat
- mtlb_s
- mtlb_setstr
- mtlb_size
- mtlb_sort
- mtlb_strcmp
- mtlb_strcmpi
- mtlb_strfind
- mtlb_strrep
- mtlb_sum
- mtlb_t
- mtlb_toeplitz
- mtlb_tril
- mtlb_triu
- mtlb_true
- mtlb_uint16
- mtlb_uint32
- mtlb_uint8
- mtlb_upper
- mtlb_var
- mtlb_zeros
mtlb_repmat
Matlab repmat emulation function
Description
There is no Scilab equivalent function for Matlab repmat but there are equivalent instructions.
The function mtlb_repmat(M,m[,n]) is used by
mfile2sci to replace repmat(M,m[,n]) when it was not
possible to know what were the inputs while porting Matlab code to Scilab. This function will
determine the correct semantic at run time. If you want to have a
more efficient code it is possible to replace mtlb_repmat calls:
If
Ais of Double type andmis a scalar,mtlb_repmat(M,m)may be replaced byones(m,m).*.Mandmtlb_repmat(M,m,n)may be replaced byones(m,n).*.MIf
Ais of Boolean type andmis a scalar,mtlb_repmat(M,m)may be replaced byones(m,m).*.bool2s(M)andmtlb_repmat(M,m,n)may be replaced byones(m,n).*.bool2s(M)If
Ais of String type andmis a scalar,mtlb_repmat(M,m)may be replaced byasciimat(ones(m,m).*.asciimat(M))andmtlb_repmat(M,m,n)may be replaced byasciimat(ones(m,n).*.asciimat(M))If
Ais of Double type andmis a vector,mtlb_repmat(M,m)may be replaced byones(m(1),m(2),...).*.MIf
Ais of Boolean type andmis a vector,mtlb_repmat(M,m)may be replaced byones(m(1),m(2),...).*.bool2s(M)If
Ais of String type andmis a vector,mtlb_repmat(M,m)may be replaced byasciimat(ones(m(1),m(2),...).*.asciimat(M))
Caution: mtlb_repmat has not to be used for hand coded functions.
Authors
- V.C.
| << mtlb_realmin | Compatibility Functions | mtlb_s >> |