Setting Array Value
3 ビュー (過去 30 日間)
古いコメントを表示
Hello Guys I have really rather simple question: I want to set an array value into the follow [1, 3, 1, 7;1, 3, 1, 7;1, 3, 1, 7] and I used the following command a(1:3,1:3)=[1 3 1 7] But it is not working. Any clues ? Thank you.
0 件のコメント
採用された回答
Matt Fig
2011 年 6 月 22 日
Another:
A = repmat([1,3,1,7],3,1) % change the 3 to 5 to get 5 rows, etc...
0 件のコメント
その他の回答 (1 件)
Paulo Silva
2011 年 6 月 22 日
r=[1 3 1 7]
a=[r;r;r]
or
r=[1 3 1 7]
b=ones(4,1)*r
b=b(1:3,:)
or
r=[1 3 1 7]
repmat(r,3,1)
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!