Multivariable functions involving trig and hyperbolics
古いコメントを表示
Im very new to matlab and struggling a bit.
I am looking to plot the function sinxsinhy = 1 but keep recieving errors due to matrix sizes. Does anyone have any ideas?
Thank you very much
1 件のコメント
John D'Errico
2018 年 11 月 19 日
What have you tried? It is far easier to provide help if we see where you are going, rather than writing complete code for you form scratch. Lacking that, I recommend that you learn about the .* operator, andwhy it can be important. Alternatively, you might look at fimplicit, which can do what you want in one line. Ok, two lines, if you include the call to syms.
回答 (1 件)
madhan ravi
2018 年 11 月 19 日
syms x y
ezsurf(sin(x)*sinh(y)-1) %3d
%or
ezplot(sin(x)*sinh(y)-1) %2d
カテゴリ
ヘルプ センター および File Exchange で Mathematics and Optimization についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!