How to add markers to a single line in plotyy
2 ビュー (過去 30 日間)
古いコメントを表示
James Porter
2015 年 3 月 19 日
編集済み: Konstantinos Sofos
2015 年 3 月 19 日
I am trying to add markers to a single line on my plotyy.
plotyy(newtime1,AnInput1f,SPMnewtime,SPM)
I would like to add them at every SPM value (8 in all) I have read the manual but I am still very confused!
採用された回答
Konstantinos Sofos
2015 年 3 月 19 日
編集済み: Konstantinos Sofos
2015 年 3 月 19 日
Hi,
Here's one way:
[ax h1 h2] = plotyy(newtime1,AnInput1f,SPMnewtime,SPM)
set(h1,'Marker','.','MarkerSize',8)
set(h2,'Marker','s','MarkerSize',8)
Regards,
1 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Two y-axis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!