Azzera filtri
Azzera filtri

How can I delete a row of numbers in which the number in the first column is less than a threshold?

2 visualizzazioni (ultimi 30 giorni)
How can I delete a row of numbers in which the number in the first column is less than a threshold?

Risposta accettata

Sean de Wolski
Sean de Wolski il 19 Giu 2013
glass half empty
X(X(:,1)<10,:) = [];
glass half full
Y = X(X(:,1)>=10,:);

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 19 Giu 2013
A=rand(100,2) %example
a=A(1,:);
A(A(:,1)<0.2,:)=[];
A=[a;A]

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by