Finding a Number in a random array
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Josiah Miles
am 7 Okt. 2019
Bearbeitet: Kevin Phung
am 7 Okt. 2019
So I am given the code p1pA=magic(7).
How would I use Matlab to find the number in the fourth row and sixth column?
Also how would I find the twentieth number?
0 Kommentare
Akzeptierte Antwort
Kevin Phung
am 7 Okt. 2019
Bearbeitet: Kevin Phung
am 7 Okt. 2019
How would I use Matlab to find the number in the fourth row and sixth column?
p1pA=magic(7);
p1pA(4,6) %The syntax is p1Pa(row,column)
Also how would I find the twentieth number?
p1pA(20)
% if just 1 index provided, the indices go column by column.
%Ex :[1 4 7]
% [2 5 8]
% [3 6 9]
0 Kommentare
Weitere Antworten (1)
Turlough Hughes
am 7 Okt. 2019
Have a look at the following documentation and scroll down to the part about indexing matrices with two subscripts. For your second question I believe you are looking for linear indexing which is the next section.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!