グラフの書き方について

3 views (last 30 days)
shunya hara
shunya hara on 10 Aug 2020
Answered: michio on 10 Aug 2020
y=tanh(2y+2x)という方程式をプロットするにはどうしたらよいですか?
またその際に得られた上の式を満たす(x、y)の値を用いてF(x、y)をプロットするにはどうしたらよいですか?
  1 Comment
shunya hara
shunya hara on 10 Aug 2020
方程式を満たすものをx、yでプロットしたいです。
そのプロットした際の値を用いて、F(x,y)をx横軸でプロットしたいです。
一部でもいいのでよろしくお願いします

Sign in to comment.

Accepted Answer

michio
michio on 10 Aug 2020
f(x,y) = 0 の形に直す必要がありますが、プロットするなら fimplicit 関数が便利です。
fimplicit(@(x,y) tanh(2*x + 2*y) - y, [-1,1])

More Answers (0)

Categories

Find more on 2 次元および 3 次元プロット 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!