How can I zoom into my plot function to a -4 to 4 "interval".
조회 수: 2 (최근 30일)
이전 댓글 표시
v1 = [1 -2 -5 6];
v2 = [-100 : .1 : 100];
y = polyval (v1, v2);
plot (v2, y)
How can I zoom in the plot function from -4 to 4?
댓글 수: 1
Mishka
2022년 5월 9일
You can set the limits of x-axis inside the plot with the command xlim(). In this case, xlim([-4 4]) should do the job.
답변 (1개)
KSSV
2022년 5월 9일
v1 = [1 -2 -5 6];
v2 = [-100 : .1 : 100];
y = polyval (v1, v2);
plot (v2, y)
xlim([-4 +4])
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!