How to get properties of Area Annotation in Matlab R2015a from Command Prompt?
2 ビュー (過去 30 日間)
古いコメントを表示
I want to get ‘AreaColor’ and ‘Border’ properties of ‘Area’ from command prompt. How can I get ‘Area annotation’ used in Simulink model? There is no help about this in help document.
Please please help me.
0 件のコメント
採用された回答
Image Analyst
2015 年 12 月 23 日
Did you try hitting the tab key after the dot? Like when you're typing >> Area.[tab key]. It should bring up a list of properties and methods available to that object.
Or you can try methods(Area) as a separate command.
Just a guess since I don't use Simulink, only MATLAB.
2 件のコメント
Walter Roberson
2015 年 12 月 23 日
It is not clear to me that the new Simulink Area Annotations have a corresponding block or function call. I can see from the documentation that they exist but not how they are implemented.
その他の回答 (1 件)
Monika Jaskolka
2019 年 8 月 31 日
a = find_system(gcs, 'FindAll', 'on', 'Type', 'Annotation', 'AnnotationType', 'area_annotation')
Valid properties of annotations are listed here: https://www.mathworks.com/help/simulink/slref/simulink.annotation.html
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Programmatic Model Editing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!