phase plane in MATLAB?
3 ビュー (過去 30 日間)
古いコメントを表示
Hi I have a equations here, and I wonder it to do phase plane.How to do it?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/157915/image.jpeg)
0 件のコメント
採用された回答
Mischa Kim
2016 年 11 月 10 日
Hello, check out the code below:
function my_ODE()
th0 = 0;
Dth0 = 1;
tspan = linspace(0,2,200);
options = odeset('RelTol',1e-8,'AbsTol',1e-10);
[~,X] = ode45(@DE, tspan,[th0; Dth0],options);
plot(X(:,1),X(:,2))
grid
end
function dX = DE(~,x)
dX = [x(2); u(x(1))];
end
function uval = u(x1)
if (x1 < 0)
uval = +5;
else
uval = -5;
end
end
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!