Setting Array Value

1 次查看(过去 30 天)
Mohamed mohamed
Mohamed mohamed 2011-6-22
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.

采纳的回答

Matt Fig
Matt Fig 2011-6-22
Another:
A = repmat([1,3,1,7],3,1) % change the 3 to 5 to get 5 rows, etc...

更多回答(1 个)

Paulo Silva
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 个评论
Mohamed mohamed
Mohamed mohamed 2011-6-22
Thank you Paul but I was looking for more Generic Answer what is the number of columns was 100 or any other number how to set them all in to r ?
Paulo Silva
Paulo Silva 2011-6-22
Use the repmat function to replicate rows

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by