Effacer les filtres
Effacer les filtres

How I can create this matrix with this logical operation?

1 vue (au cours des 30 derniers jours)
Sourasis Chattopadhyay
Sourasis Chattopadhyay le 4 Août 2021

Réponse acceptée

Awais Saeed
Awais Saeed le 4 Août 2021
I would do this like
matA = [1 7000; 1.05 6500; 1.05 6800; 1.12 6400; 1.34 6700];
simdone = 1;
row = 1;
while (simdone == 1)
if ((matA(row+1,1) > matA(row,1)) && (matA(row,2) > matA(row+1,2) ))
row = row + 1;
else
matA(row+1,:) = []; % delete row if condition does not match
end
if (row == size(matA,1))
simdone = 0; % break the while loop if index is out of bound
end
end
disp(matA)

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by