Matrix(Matrix)
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Prabhat Hegde
am 10 Apr. 2020
Beantwortet: nada zaidi
am 6 Apr. 2021
I am a new MATLAB user and am unsure of what operation is being carried out by the below chunk of code.
a=[1 1;1 2]
b=[1;0;0;1]
b(a(:),:)
ans =
1
1
1
0
a(:)
^obviously gives the column vector of a.
(a(:),:)
^selects all rows and columns in this column vector.
b(a(:),:)
^what does this chunk of code do?
0 Kommentare
Akzeptierte Antwort
James Tursa
am 10 Apr. 2020
Bearbeitet: James Tursa
am 10 Apr. 2020
The "a" values are simply being used as row numbers for indexing into b.
b(a(:),:)
= b([1;2;1;2],:)
which is equivalent to
[ b(1,:);
b(2,:);
b(1,:);
b(2,:)]
=
1
0
1
0
0 Kommentare
Weitere Antworten (1)
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!