repmat
22 次查看(过去 30 天)
显示 更早的评论
i try to create an array as following by using repmat() function:
i have h array
h = [1 2 3 4 5]
and i want to carry out this:
h2 = [1 1 2 2 3 3 4 4 5 5]
by using repmat() func. i want to make each element of this array(h) double like in h2... please help me out ...
0 个评论
采纳的回答
Matt Fig
2011-3-22
N = 2; % The number of times each element will repeat...
h2 = reshape(repmat(h,N,1),1,N*length(h))
4 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!