Drawing Rectangle/Lines with data
조회 수: 5 (최근 30일)
이전 댓글 표시
Hello,
I have this matrix,

The first column is the base of the rectangle, starting from 0 till 0.15 and the second column is the magnitude of the height at both ends of the rectangle,
I am having trouble drawing it,, here is my code
x1 = 0;
x2 = 0.15;
y1 =[ 0.0120];
y2 = [0.0120];
figure
hold on
plot (x1,y1,'-');
plot(x2, y2,'-');
axis([0 0.5 0 0.1])
But, I am not getting correct results, I am getting nothing in the output.
Does any one know?
댓글 수: 0
채택된 답변
Fangjun Jiang
2020년 1월 22일
rectangle('Position',[0 0.15 0.012 0.012])
axis([0 0.02 0 0.2])
댓글 수: 6
Fangjun Jiang
2020년 1월 24일
Just draw it with a pencil manually and match it with the MATLAB code. You've known rectangle(). I don't think there is any difficulty writing code here. It is more difficult to understand what you want to do.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

