only one answer for for loop
    2 ビュー (過去 30 日間)
  
       古いコメントを表示
    
i have i*1182 an array A.i want make another array such every single element of the array A is printed 50 times so that i will another array with length of 1182*50 = 59100
for w = 1:1182
z = repmat(ult(w),1,50);
end
ult is 1*1182 array
0 件のコメント
採用された回答
  Matt J
      
      
 2021 年 1 月 4 日
        
      編集済み: Matt J
      
      
 2021 年 1 月 4 日
  
      This should really be done without a for-loop,
z = repmat(ult(:),1,50);
But if you insist on using a for-loop, you must tell the code where in z the result of each iteration is to be assigned,
for w = 1:1182
 z(w,:) = repmat(ult(w),1,50);
end
4 件のコメント
  Matt J
      
      
 2021 年 1 月 5 日
				You're quite welcome, but please Accept-click the answer to indicate that your problem was resolved.
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

