How to draw the figure dot like this. ( I have a example figure.)
1 回表示 (過去 30 日間)
古いコメントを表示
30= 0.0694914000000000
45= 0.135992000000000
60= 0.398871000000000
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1032860/image.png)
採用された回答
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
.
2 件のコメント
その他の回答 (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!