How to generating surface without plotting?
이전 댓글 표시
I wonder if it's possible to create a surface by ''surf'' without plotting?
That means, I only want the surface data, but I don't want the figure.
Anyone has idea?
Thanks a lot and happy new year :)
댓글 수: 2
Ameer Hamza
2020년 12월 30일
Can you explain what surface data are you referring to?
Daniel Chou
2020년 12월 30일
편집: Daniel Chou
2020년 12월 30일
채택된 답변
추가 답변 (1개)
Cris LaPierre
2020년 12월 30일
If I look at the first example on the surf documentation page, it first creates X, Y and Z, then uses surf to plot/create the surface. So is what you want X,Y and Z?
% Example modified to create surface data but not the surface
[X,Y] = meshgrid(1:0.5:10,1:20);
Z = sin(X) + cos(Y);
% surf(X,Y,Z)
카테고리
도움말 센터 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
