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

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
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에 대해 자세히 알아보기

제품

질문:

2018년 11월 19일

댓글:

2018년 11월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by