hi why my while loop is never end? it running continuously.

function y = fcn
%#codegen
y=0;
i=0;
coder.extrinsic ('fprintf');
while(i<10)
if(y==1)
y=0;
fprintf('on\n');
else
y=1;
fprintf('off\n');
end
i = i+ 1;
fprintf('i=%d\n',i);
end

댓글 수: 12

It is ok. It stops when i == 10
No its is running continuously.I tried
try with a for loop instead
run in a matlab function block of simulink.
Same problem
How is fcn being called? Perhaps it is being called continuously and so creates the illusion that the while loop never ends.
how to solve it?
How is fcn being called?
Is it showing i= with numbers greater than 10? Or is it cycling showing 1 to 10 over and over again?
Your function would be invoked once per time step, so if you are running more than one time step it is going to repeat multiple times.
can u clear me how can i invoke my function once per time step?
It should already be invoked once per time step if you are using discrete time. If you are using continuous time then I am not sure how often it would get invoked.
The problem I see is that you are running for multiple time steps rather than just having the function invoked at initialisation time.

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

답변 (0개)

카테고리

도움말 센터File Exchange에서 Model Verification에 대해 자세히 알아보기

질문:

2019년 3월 26일

댓글:

2019년 3월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by