グラフの書き方について

y=tanh(2y+2x)という方程式をプロットするにはどうしたらよいですか?
またその際に得られた上の式を満たす(x、y)の値を用いてF(x、y)をプロットするにはどうしたらよいですか?

1 comentario

shunya hara
shunya hara el 10 de Ag. de 2020
方程式を満たすものをx、yでプロットしたいです。
そのプロットした際の値を用いて、F(x,y)をx横軸でプロットしたいです。
一部でもいいのでよろしくお願いします

Iniciar sesión para comentar.

 Respuesta aceptada

michio
michio el 10 de Ag. de 2020

0 votos

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

Más respuestas (0)

Categorías

Más información sobre 2 次元および 3 次元プロット en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 10 de Ag. de 2020

Respondida:

el 10 de Ag. de 2020

Community Treasure Hunt

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

Start Hunting!