How can I show all of the properties of a "numerictype" object in MATLAB R2015b?
4 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2016 年 7 月 22 日
回答済み: MathWorks Support Team
2016 年 7 月 22 日
I have a "numerictype" object, T, and I want to see all of the properties for it. If I just write "T" it only lists a few properties. If I try to open it in the variable viewer I get a pop-up that only lists a few properties. How can I get a list of all of the properties and their values?
採用された回答
MathWorks Support Team
2016 年 7 月 22 日
You can use the function "get" to get all of the properties and the corresponding values of a "numerictype" object. This can be used in one of the following ways.
>> T.get()
or
>> get(T)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Create Fixed-Point Objects in MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!