loop to count amount sin(x)>0.5 when 1>x>1000

조회 수: 1 (최근 30일)
Jonas Maes
Jonas Maes 2020년 10월 20일
편집: KSSV 2020년 10월 20일
What is wrong?
for n=1:1000
while n<1000
if sin(n)>0.5
s(n)=sin(n);
n=n+1;
else
n=n+1;
end
end
end
L=length(s);
disp(L)

채택된 답변

KSSV
KSSV 2020년 10월 20일
편집: KSSV 2020년 10월 20일
To get what you want loop is not required.
x = linspace(1,1000,10^5) ;
y = sin(x) ;
nnz(y>0.5)
If you want loop:
% loop
thesum = 0 ;
for i = 1:length(x)
y = sin(x(i)) ;
if y > 0.5
thesum = thesum+1 ;
end
end
thesum

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by