Discrete time nonlinear system
6 ビュー (過去 30 日間)
古いコメントを表示
How can i develop this discrete-time nonlinear system in simulink?
[x]=[0.01x1 - x2; x1 - 0.003x2^2]
1 件のコメント
採用された回答
Fangjun Jiang
2011 年 11 月 16 日
Grab an Integrator block, if the input is dx1/dt, then the output is x1. Do the same for x2 and then you have all you need to build the equation. x2^2 is the same as x2*x2.
You don't seem to have any inputs, so set the initial condition of the Integrator blocks to specify the initial value of x1 and x2 and then run the simulation to see the dynamics.
4 件のコメント
Fangjun Jiang
2011 年 11 月 17 日
Then replace the Integrator block with the Unit Delay (1/Z) block. The input is x(k+1), the output is x(k).
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!