有的,repmat函数可以满足你的需求.可以在Command Window里面运行help repmat命令,查看该函数的具体用法.
例子:
repmat([1 2 3],3,1)运行结果是:ans =
1 2 3