How to find rest of the number in matrix ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
M M Nabi
am 22 Sep. 2021
Beantwortet: Viranch Patel
am 22 Sep. 2021
a = 1:10;
I = find(a>5)
aa = a(I)
bb = %%% How do I find the rest of the numbers??
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Viranch Patel
am 22 Sep. 2021
a = 1:10;
I = find(a>5);
aa = a(I);
bb = a;
bb(I)=[];
You can reassign the value of bb as 'a' and then can have other values by specifying bb(I) = [].
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!