I have a question about plot. Plesase help me.
이전 댓글 표시
I want to draw a line x = a perpendicular to the x axis in matlab. How do I do ? (with a = constant) value y from 3 to 5.
채택된 답변
추가 답변 (1개)
% define your constant:
a = 5;
% define y limits
ymin = -10;
ymax = 10;
% define x and y values
x = a*ones(2,1);
y = linspace(ymin,ymax,length(x));
% plot the result
figure()
plot(x,y,'r-')
xlabel('x')
ylabel('y')
title('plot of x = a')
댓글 수: 3
Azzi Abdelmalek
2013년 12월 20일
You don't need 500 points to plot a line
Geert
2013년 12월 20일
Corrected it...
Nguyen Trong Nhan
2013년 12월 20일
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!