필터 지우기
필터 지우기

If else condition is not working properly in matlab function block

조회 수: 3 (최근 30일)
Nandhini
Nandhini 2023년 9월 28일
댓글: Nandhini 2023년 9월 29일
function [y1,y2]= fcn(u1,u2,u3,u4)
if u1 > 5
y1=u2;
else y1=u3;
end
if u1 < 5
y2=u3;
else y2=u2;
end
I implemented this function in MATLAB function but my output of MATLAB function block always comes as 5 it is not taking the input properely and it is also showing 5 when it is really less than 5 also,here iam giving this output to controlled current source.
  댓글 수: 12
Sam Chak
Sam Chak 2023년 9월 29일
I have attached the plots of the u1 and y1 signals (Scope 2 and Scope 3, respectively). The code in the MATLAB Function block works as expected. What is the desired signal for y1? It may be possible to construct the function mathematically.
Blocks under the Masked system (Speed regulator PI controller):
u1 signal:
y1 signal:
Nandhini
Nandhini 2023년 9월 29일
Hi thank you for the comment.I have another doubt,i want to check this loop after the half of simulation time,so that i can avoid intial oscillations.for example i want to avoid the first 0.5s simulation time for this MATLAB function loop,kindly help me how this can be implemented.

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

답변 (1개)

Amir Azadeh Ranjbar
Amir Azadeh Ranjbar 2023년 9월 28일
If you want me to provide better guidance, please tell me more about your goal for writing this function.
function [y1,y2]= fcn(u1,u2,u3,u4)
if u1>=5
y1 = u2 ;
else
y2 = u3 ;
end
end
  댓글 수: 4
Sam Chak
Sam Chak 2023년 9월 29일
@Nandhini, Can you show share the Simulink file? Use the paperclip icon to attach the file.

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

카테고리

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

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by