Write a MATLAB program to draw the surfaces z=sqrt(x^2+y^2), z=x^2+y^2, z=x+y and a cylinder of radius 3 using subplot
조회 수: 8 (최근 30일)
이전 댓글 표시
Can someone explain this subplot thing to me?
댓글 수: 0
채택된 답변
William Rose
2021년 11월 1일
You are being asked do draw four surfaces in different parts of a single figure. See the help for subplot() for examples. You could do a column of 4 plots, or a row of 4, or two rows of two, as shown below.
x=0:10;
subplot(2,2,1);
plot(x,x); title('x');
subplot(2,2,2);
plot(x,x.^2); title('x squared');
subplot(2,2,3);
plot(x,x.^3); title('x cubed');
subplot(2,2,4);
plot(x,x.^4); title('x to the fourth');
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!