SURF 2D. How is possible.
조회 수: 1 (최근 30일)
이전 댓글 표시
How is that SURF makes 3D plots of 2D data? What data is suited for this? Newbie alert :)
댓글 수: 0
채택된 답변
ChristianW
2013년 3월 6일
MATLAB help is great.
doc surf
Quote: surf(Z) creates a three-dimensional shaded surface from the z components in matrix Z, using x = 1:n and y = 1:m, where [m,n] = size(Z).
Btw, plot does the same thing:
Y = sin(1:10);
plot(Y) % 1D data, 2D plot using the index of the data as missing dimension
댓글 수: 0
추가 답변 (1개)
Youssef Khmou
2013년 3월 6일
hi Nuchto
you also have to ask : HOW plot make 2D representation of 1D data? i think that this is about theoretical conceptions
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!