グラフの書き方について
14 views (last 30 days)
Show older comments
y=tanh(2y+2x)という方程式をプロットするにはどうしたらよいですか?
またその際に得られた上の式を満たす(x、y)の値を用いてF(x、y)をプロットするにはどうしたらよいですか?
Accepted Answer
michio
on 10 Aug 2020
f(x,y) = 0 の形に直す必要がありますが、プロットするなら fimplicit 関数が便利です。
fimplicit(@(x,y) tanh(2*x + 2*y) - y, [-1,1])

0 Comments
More Answers (0)
See Also
Categories
Find more on ライン プロット in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!