Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Plot the trapeoidal waveform using given equations

1 回表示 (過去 30 日間)
Mantavya Vashistha
Mantavya Vashistha 2020 年 3 月 3 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
F(θe)
1 0 ≤ θe < 2π/3
16/π(θe 2π 3 ) 2π/3 ≤ θe < π
1 π ≤ θe < 5π/3
1 + 6/π(θe 5π 3 ) 5π/3 ≤ θe < 2π

回答 (1 件)

Vladimir Sovkov
Vladimir Sovkov 2020 年 3 月 3 日
syms theta
y=piecewise(...
0<=theta<2*pi/3,1,...
2*pi/3<=theta<pi,(1-6/pi*(theta-2*pi/3)),...
pi<=theta<5*pi/3,-1,...
5*pi/3<=theta<2*pi,(-1+6/pi*(theta-5*pi/3))...
);
fplot(y,[0 2*pi]);
  2 件のコメント
Mantavya Vashistha
Mantavya Vashistha 2020 年 3 月 3 日
thank you very much
can you help me to implement this waveform on generating back emf tapezoidal waveform on simulink
I have been made a simulink model to calculate wm
I have to find ea,eb and ec
Vladimir Sovkov
Vladimir Sovkov 2020 年 3 月 3 日
I am not much experienced in Simulink but I think that the overall programming linguistic does not differ very much.

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by