How do I create a (10,10) matrix containing numbers from 1 to 100?
Ältere Kommentare anzeigen
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 Kommentare
James Tursa
am 18 Sep. 2013
Is this homework? What have you tried so far?
Tom
am 18 Sep. 2013
Akzeptierte Antwort
Weitere Antworten (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
am 2 Sep. 2018
Bearbeitet: SYED ABOU ILTAF HUSSAIN
am 2 Sep. 2018
1 Stimme
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
am 26 Aug. 2022
0 Stimmen
create a new 4x4 matrix that is filled with the number 100
9 Kommentare
Stephen23
am 26 Aug. 2022
"create a new 4x4 matrix that is filled with the number 100"
What did you try so far?
finess
am 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
am 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
am 27 Aug. 2022
but again why is the answer the way it is ?
Les Beckham
am 27 Aug. 2022
I recommend using this free Matlab training course (link below):
Walter Roberson
am 27 Aug. 2022
Bearbeitet: Walter Roberson
am 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
am 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
Kategorien
Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!