필터 지우기
필터 지우기

Containg the especific number in the vector

조회 수: 1 (최근 30일)
Guilherme Lopes de Campos
Guilherme Lopes de Campos 2019년 2월 7일
Hi MATLAB Community,
I would to ask a help please,
my purpose in the follow code is counting, how many number greater 1 or equal (x>=1), and put in a variable the number of values greater 1.
The code are as follows:
Which is my mistake in the code?
Error message :
Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error.
To construct matrices, use brackets instead of parentheses.
Thank you very much for attention
Guilherme Lopes
b = linspace(0,5,20);
n=0;
m=0;
for b = 1:n
if b(1,:n)>=0
n = n+1;
else
m=m+1;
end
end

채택된 답변

madhan ravi
madhan ravi 2019년 2월 7일
No loops needed:
numbers_greater_than_one_or_equal = nnz(b>=1)
numbers_lesser_than_one = nnz(b<1)
  댓글 수: 3
Guilherme Lopes de Campos
Guilherme Lopes de Campos 2019년 2월 7일
Perfectly Madhan,
it works!!!
Thank you very much for attention.
Very grateful
Guilherme Lopes de Campos
Guilherme Lopes de Campos
Guilherme Lopes de Campos 2019년 2월 7일
Thank you KALYAN , for to show how to write the code with the knowledge previous.
'-'

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by