How do I create a (10,10) matrix containing numbers from 1 to 100?
Show older comments
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 Comments
James Tursa
on 18 Sep 2013
Is this homework? What have you tried so far?
Tom
on 18 Sep 2013
Accepted Answer
More Answers (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
on 2 Sep 2018
Edited: SYED ABOU ILTAF HUSSAIN
on 2 Sep 2018
1 vote
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
on 26 Aug 2022
0 votes
create a new 4x4 matrix that is filled with the number 100
9 Comments
Stephen23
on 26 Aug 2022
"create a new 4x4 matrix that is filled with the number 100"
What did you try so far?
finess
on 27 Aug 2022
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
on 27 Aug 2022
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
on 27 Aug 2022
but again why is the answer the way it is ?
Les Beckham
on 27 Aug 2022
I recommend using this free Matlab training course (link below):
Walter Roberson
on 27 Aug 2022
Edited: Walter Roberson
on 27 Aug 2022
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
on 28 Aug 2022
Wow I love these Answers! It gives me a feeling of how a great teacher looks like, with great options for students
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!