How to make specific elements in a 3D matrix zero?
Ältere Kommentare anzeigen
Hi I have a 3D matrix namely Costyearlydata having size of 24x365x10 and I want to make certain elements in that matrix zero.
D has a size of 4000x1x10 and it represents the index of those elements which should be zero.
I am trying with this code but the problem is it only gives correct results for the 1st layer in cost1 matrix and for the remaining nine layers it doesn't make that element zero .What is wrong with my code.Kindly point out my mistake.
for yy=1:10
cost1(:,:,yy)=Costyearlydata(:,:,yy);
cost1(D)=0;
end
Your assistance is much appreciated.I am not so much familiar to dealing with 3D matrix and I am quite new to MATLAB:(
3 Kommentare
Walter Roberson
am 22 Mai 2020
D has a size of 4000x1x10 and it represents the index of those elements which should be zero.
The index relative to what? Relative to the 24 x 365 plane? The linear index in the 24 x 365 x 10 array?
Rabia Zulfiqar
am 22 Mai 2020
Rabia Zulfiqar
am 22 Mai 2020
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!