필터 지우기
필터 지우기

I have a matrix with two columns. I want to create a new one that only contains the rows without a 0 in the second column.

조회 수: 1 (최근 30일)
I have a matrix, A, that looks as follows. My goal is to have a new one, B, that is only made of the rows that do NOT have a zero in the second column.
A = [7.36 0;
7.37 0;
7.38 2;
7.39 0;
7.45 1;
7.81 5;
7.94 6;
7.98 0]
B = [7.38 2;
7.45 1;
7.81 5;
7.94 6]

채택된 답변

the cyclist
the cyclist 2017년 6월 29일
B = A(not(A(:,2)==0),:)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by