loop for removing highest value until specific value is reached
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
for exmaple,
for 10x10 matrix A
i want to make loop which removes highest element until sum of A is less than 20
and i want to know each removed element's position
i think 'while-loop' is needed
( I only know finding the first highest value using 'for-loop')![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1069495/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1069495/image.jpeg)
0 Kommentare
Akzeptierte Antwort
Adam Danz
am 18 Jul. 2022
A = randi(13,10);
while sum(A,'all','omitnan')>20
[~,idx] = max(A(:),[],'omitnan');
A(idx) = NaN;
end
isRemoved = isnan(A)
sum(A,'all','omitnan')
Weitere Antworten (1)
David Hill
am 18 Jul. 2022
[b,idx]=sort(A(:));
IDX=idx(cumsum(b)>=20);%linear index of each of the removed element's position
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!