How can I represent the following piecewise function in Simulink

28 ビュー (過去 30 日間)
Idrak Karim
Idrak Karim 2020 年 2 月 29 日
コメント済み: Walter Roberson 2021 年 4 月 8 日
Hello i need to represent a piecewise function in my simulink model that mirros the solution i got in matlab.
syms x
g= piecewise(0<=x<=0.0375, ((-10300/3)+((704000*x)/9)),0.0375<=x<=0.0625, -500, 0.0625<=x<=0.1,((39500/9)-(704000*x)/9));
fplot(g)
I am trying to use the matlab user defined function
function y = fcn(u)
if (u >= 0 && u <= 0.0375)
G= (-10300/3)+ ((704000*u)/9);
elseif (u >= 0.0375 && u<= 0.0625)
G= -500;
elseif (u >= 0.0625 && u<= 0.1)
G= (39500/9)-((704000*u)/9);
end
y = G;
with my input u, as a constant block with linspace(0,0.1), but it does not work. CAN SOMEONE PLEASE HELP ME URGENTLY. NEED IT ASAP FOR MY DISSERTATION.

採用された回答

Priyanshu Mishra
Priyanshu Mishra 2020 年 3 月 4 日
Hi Idrak,
You may refer to this link for using MATLAB function.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAssumptions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by