% REP.m Replicate a matri% This function replicates a matrix in both dimensions.
% Syntax: MatOut = rep(MatIn,REPN);
% Input parameters:
% MatIn - Input Matrix (before replicating)
% REPN - Vector of 2 numbers, how many replications in each dimension
% REPN(1): replicate vertically
% REPN(2): replicate horizontally
Example:
function MatOut = rep(MatIn,REPN)
MatIn = [1 2 3]
REPN = [1 2]: MatOut = [1 2 3 1 2 3]
REPN = [2 1]: MatOut = [1 2 3;
1 2 3]
REPN = [3 2]: MatOut = [1 2 3 1 2 3;
1 2 3 1 2 3;
1 2 3 1 2 3]
转载于:https://www.cnblogs.com/liuyang1995/p/9719802.html
最后
以上就是健忘八宝粥最近收集整理的关于matlab中rep函数的用法的全部内容,更多相关matlab中rep函数内容请搜索靠谱客的其他文章。
发表评论 取消回复