How to extract data from a plot (figure)
2 ビュー (過去 30 日間)
古いコメントを表示
Hello!
I am trying to extract the data in my figure, when it gets "true" or "false". For example, the image below has a true at 0.4159 and a false at 0.9795. How can I extract this (can be through a script) to get these point all over the plot?
Thank you in advance!
5 件のコメント
Mathieu NOE
2021 年 1 月 11 日
hello Gustavo
glad it meets your needs
you can create your own function that use's the crossing function I sent you (call it inside your own function and pass the arguments).
回答 (1 件)
Cris LaPierre
2021 年 1 月 8 日
You would process the data used to create the plot, not the plot itself. Look at your plot and see if you can identify some characteristic you could use to detect when the signal switches to true and when it switches to false.
I would probably try something using diff(Fault.signals.values), since a change of +1 indicates a switch from False to True, while a change of -1 indicates a switch from True to False.
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!