Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Need help graphing a surface!
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I am graphing x, y, z equations into surfaces. I am currently doing this in Excel. However, in Excel, I have to use 'matrices' with defined values. How can I graph an equation like this...
x = y + z
...without needing to have defined values/matrices.
How can I do this? Should I stick to Excel? move to MatLab? or is there a better application out there to do this?
Thanks
댓글 수: 0
답변 (3개)
Mischa Kim
2014년 2월 5일
MATLAB is your tool. Try
[x,y] = meshgrid(0:.1:10);
z = x - y;
mesh(z);
box
mesh is only one of several options you can use to plot data in 3D.
댓글 수: 1
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!