Borrar filtros
Borrar filtros

Remove rows from matrix based on condition

45 visualizaciones (últimos 30 días)
Zahra
Zahra el 5 de Abr. de 2023
Respondida: Dyuman Joshi el 5 de Abr. de 2023
I have a matrix of (125000x2),(row, column). The first column is time, and the second column is the measured voltage value from an experiment. I want to delete the rows if the measured voltage value is less (-0.08) or bigger than (0.08).

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 5 de Abr. de 2023
%Let "in" be your matrix
%Finding the rows that meet this condition
idx = in(:,2) > 0.08 | in(:,2) < -0.08;
%Deletion
in(idx,:)=[];

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Productos


Versión

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by