Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.1 - 日本語

Change language to:
English - Français - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Scilab help >> Compatibility Functions > mtlb_repmat

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 A is of Double type and m is a scalar, mtlb_repmat(M,m) may be replaced by ones(m,m).*.M and mtlb_repmat(M,m,n) may be replaced by ones(m,n).*.M

  • If A is of Boolean type and m is a scalar, mtlb_repmat(M,m) may be replaced by ones(m,m).*.bool2s(M) and mtlb_repmat(M,m,n) may be replaced by ones(m,n).*.bool2s(M)

  • If A is of String type and m is a scalar, mtlb_repmat(M,m) may be replaced by asciimat(ones(m,m).*.asciimat(M)) and mtlb_repmat(M,m,n) may be replaced by asciimat(ones(m,n).*.asciimat(M))

  • If A is of Double type and m is a vector, mtlb_repmat(M,m) may be replaced by ones(m(1),m(2),...).*.M

  • If A is of Boolean type and m is a vector, mtlb_repmat(M,m) may be replaced by ones(m(1),m(2),...).*.bool2s(M)

  • If A is of String type and m is a vector, mtlb_repmat(M,m) may be replaced by asciimat(ones(m(1),m(2),...).*.asciimat(M))

Caution: mtlb_repmat has not to be used for hand coded functions.

See Also

  • ones — 要素が1の行列
  • kron — クロネッカー積 (.*.)

Authors

  • V.C.
<< mtlb_realmin Compatibility Functions mtlb_s >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Mar 03 11:01:00 CET 2011