필터 지우기
필터 지우기

picking rows which has negative element.

조회 수: 6 (최근 30일)
Kaushik
Kaushik 2013년 4월 17일
hi, i have a matrix which can have negative elements. is ther eq quick and efficient way to pick the rows if any element in the row has negative values.
Thanks

채택된 답변

Iman Ansari
Iman Ansari 2013년 4월 17일
Hi
a=randn([5 5])+1
Nrows=sum(a<0,2);
a(Nrows>0,:)
  댓글 수: 2
Kaushik
Kaushik 2013년 4월 17일
this is not correct. because the sum of the elements along dimension 2 can be positive while there exists a negative element present. may be i should clarify my question. i want to pick a row if the row has a negative element (the row may have mixture of positive and negative elements)
Iman Ansari
Iman Ansari 2013년 4월 17일
sum(a<0,2) is number of negative elements in each row. a<0 is one for negative values and 0 for others.

댓글을 달려면 로그인하십시오.

추가 답변 (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