I was trying the whole night to plot the surface described by x^2-y^2-z^2=1.....This program is sooo hard to use!! could anyone give a solution? Thanks a lot.

 채택된 답변

Youssef  Khmou
Youssef Khmou 2014년 11월 2일

0 개 추천

There several tutorials that illustrate how to make a graph of f(x,y), here is simple example :
[x,y]=meshgrid(-1:0.1:1);
z=sqrt(1+x.^2+y.^2);
surf(x,y,abs(z))

댓글 수: 3

Yue Li
Yue Li 2014년 11월 2일
Isn't this problematic? Because you are really missing the negative part of this graph....Also, may I ask how did you learn all this? I spent all night, and never made any progress of such....
Youssef  Khmou
Youssef Khmou 2014년 11월 2일
remove the absolute value >>surf(x,y,z). start by learning simple tutorials.
Yue Li
Yue Li 2014년 11월 2일
Thanks a lot!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

태그

질문:

2014년 11월 2일

댓글:

2014년 11월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by