matlab subplot,mathematical operation
이전 댓글 표시
With the subplot function to draw more than one graph in the same graph window -10<x<10 for all integers in range;

Write the commands that will draw the graphs of the functions on the screen.
댓글 수: 6
madhan ravi
2020년 8월 31일
What did you try for your homework?
Mehmet ali Karatas
2020년 8월 31일
madhan ravi
2020년 8월 31일
Start with MATLAB On-ramp course.
Mehmet ali Karatas
2020년 8월 31일
VBBV
2020년 9월 1일
clearvars close all
X = -10:1:10; Y1 = X+2; Y2 = X.^2; Y3 = X.^3; Y4 = real(sqrt(X));
subplot(221) plot(X,Y1,'b'); subplot(222) plot(X,Y2,'b');
subplot(223) plot(X,Y3,'b'); subplot(224) plot(X,Y4,'b');
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!