グラフの書き方について
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
shunya hara
am 10 Aug. 2020
Beantwortet: michio
am 10 Aug. 2020
y=tanh(2y+2x)という方程式をプロットするにはどうしたらよいですか?
またその際に得られた上の式を満たす(x、y)の値を用いてF(x、y)をプロットするにはどうしたらよいですか?
Akzeptierte Antwort
michio
am 10 Aug. 2020
f(x,y) = 0 の形に直す必要がありますが、プロットするなら fimplicit 関数が便利です。
fimplicit(@(x,y) tanh(2*x + 2*y) - y, [-1,1])
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/344308/image.png)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu ライン プロット finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!