How to draw the figure dot like this. ( I have a example figure.)
조회 수: 1 (최근 30일)
이전 댓글 표시
30= 0.0694914000000000
45= 0.135992000000000
60= 0.398871000000000
채택된 답변
Star Strider
2022년 6월 15일
Try this —
A = [30 45 60; 0.069491 0.135992 0.398871; 0.069491 0.135992 0.398871]+[0; 0; 0.3];
figure
plot(A(1,:), A(2:3,:), '.-', 'MarkerSize',15)
xlabel('Inclined angle (degree)')
ylabel('Heave max (m)')
axis padded
.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!