find if a column vector contains at least element 1

조회 수: 3 (최근 30일)
Salvatore Mazzarino
Salvatore Mazzarino 2012년 9월 20일
I have to check if column vector has at least element 1. Does Matlab have such similar function or I have to build it myself?
  댓글 수: 3
Salvatore Mazzarino
Salvatore Mazzarino 2012년 9월 20일
No I mean check if in the matrix there is at least 1 as a number.
Daniel Shub
Daniel Shub 2012년 9월 20일
편집: Daniel Shub 2012년 9월 20일
So do you mean any? It would help if you gave a couple of example vectors and what you expect.

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

채택된 답변

Sean de Wolski
Sean de Wolski 2012년 9월 20일
tf = any(A(:)==1)

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2012년 9월 20일
편집: Azzi Abdelmalek 2012년 9월 20일
length(a)
Or
numel(a)
  댓글 수: 2
Salvatore Mazzarino
Salvatore Mazzarino 2012년 9월 20일
No I don't mean check if the matrix has at lest one element. I would know if the matrix contains at least 1. For example:
A=[1 0 0]
this contains 1.
B=[0 0 0]
this contains all zeros.

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

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by