3d plot
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi! I have a vector lets say x=1:81 and the same for y and z and I would like to plot it with surf. My problem is that I need to reorganise my vectors to grids so I tried meshgrid but I don't now if i understood it, becouse i would like a grid that has the size 9x9 but I got one with 81x81 am I doing something wrong or is it some other way to solve this problem?
댓글 수: 0
채택된 답변
Wayne King
2012년 4월 21일
meshgrid() returning 81x81 for situation you describe is correct, but what you indicate seems that you want to first reshape your x,y, and z vectors in 9x9 matrices
x1 = reshape(x,9,9);
y1 = reshape(y,9,9);
z1 = reshape(z,9,9);
surf(x1,y1,z1);
Not sure if that makes sense for your data.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!