Removing data from matrix

3 visualizaciones (últimos 30 días)
sooraj ajith
sooraj ajith el 22 de Feb. de 2021
Comentada: sooraj ajith el 22 de Feb. de 2021
Hi, i have a set of n x 3 matrix. Such as A = [1 0 0;2 0 0 ; 3 0 0; 4 0 0 ]. I have my initial value, like [4 0 0 ]. I want to find my initial value from matrix and delete that row from my the matrix

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 22 de Feb. de 2021
Editada: KALYAN ACHARJYA el 22 de Feb. de 2021
One way:
int_dat=[4 0 0];
A =[1 0 0;2 0 0 ; 3 0 0; 4 0 0];
[r,c]=size(A);
idx=A==int_dat;
row_num=find(sum(idx')==c);
A(row_num,:)=[]
Result:
A =
1 0 0
2 0 0
3 0 0

Más respuestas (0)

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by