how can I get y which correspond to x and then plot (x,y)??

2 ビュー (過去 30 日間)
jameslk
jameslk 2021 年 6 月 16 日
回答済み: Rafael Hernandez-Walls 2021 年 6 月 16 日
syms x y
x=[-4:1:4]
f = y^3+0.2*exp(-1*x^2)*y^2-2.2039*y^2+0.8155 == 0;

回答 (1 件)

Rafael Hernandez-Walls
Rafael Hernandez-Walls 2021 年 6 月 16 日
Try this:
x=linspace(-4,4);
for r=1:length(x)
y(r)=fzero(@(y)y.^3+0.2*exp(-1*x(r).^2)*y.^2-2.2039*y.^2+0.8155,1);
end
plot(x,y)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by