How do I create a (10,10) matrix containing numbers from 1 to 100?
古いコメントを表示
How do I create a (10,10) matrix containing numbers from 1 to 100?
I just want the numbers to go 1 to 10 on the top row, then 11-20 on the 2nd row etc.
2 件のコメント
James Tursa
2013 年 9 月 18 日
Is this homework? What have you tried so far?
Tom
2013 年 9 月 18 日
採用された回答
その他の回答 (4 件)
Another solution using implicit expansion (which wasn't available back in 2013 when this question was posted):
n = 10;
A = (1:n) + n*(0:n-1).'
SYED ABOU ILTAF HUSSAIN
2018 年 9 月 2 日
編集済み: SYED ABOU ILTAF HUSSAIN
2018 年 9 月 2 日
1 投票
Try this a= [1:10]; for i=2:10 a(i,:)=a(i-1,:)+10; end
If we're posting solutions which are instructive, even if not ideal:
A = zeros(10);
A(:) = 1:100;
A = A.'
finess
2022 年 8 月 26 日
0 投票
create a new 4x4 matrix that is filled with the number 100
9 件のコメント
Stephen23
2022 年 8 月 26 日
"create a new 4x4 matrix that is filled with the number 100"
What did you try so far?
finess
2022 年 8 月 27 日
I tried to make a matrix A that would print the number 100 a hundred times but It didn't really work well! I am not sure why
A(:)=100
that was it
A = zeros(4,4);
A(:) = 100
finess
2022 年 8 月 27 日
thanks mhn roberson !
Appreciate that ! would you guys recommend some resources to check out the basics of programming in matlab ! I want learn how to figure out problems in matlab but it keeps puzzling me
finess
2022 年 8 月 27 日
but again why is the answer the way it is ?
Les Beckham
2022 年 8 月 27 日
I recommend using this free Matlab training course (link below):
Walter Roberson
2022 年 8 月 27 日
編集済み: Walter Roberson
2022 年 8 月 27 日
There are a number of different ways to achieve the same result.
A = 100 + zeros(4,4)
A = 100 * ones(4,4)
A = 100; A = A(ones(4,4))
A = zeros(4,4); A(:) = 100
A(1:4,1:4) = 100
A = repmat(100,4,4)
finess
2022 年 8 月 28 日
Wow I love these Answers! It gives me a feeling of how a great teacher looks like, with great options for students
カテゴリ
ヘルプ センター および File Exchange で Creating and Concatenating Matrices についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!