Properties of user defined classes cannot be seen in variable editor. why? Please look at the picture.

4 ビュー (過去 30 日間)
Hi every one. As you can see in the picture at the following link I can not see properties of user defined classes in my workspace. When I type command window I can see the properties but in variable editor I can not see any thing. Is it normal, is there a way to solve this problem.

回答 (2 件)

Daniel Shub
Daniel Shub 2013 年 8 月 8 日
This is a reoccurring problem/request. See my previous answer for additional links. In short, the variable editor which makes use of proprietary aspects of com.mathworks.mlservices.MLArrayEditorServices. You could ask TMW to make this FOSS. You could also ask them for a product enhancement to improve the ability of the variable editor to handle custom classes (i.e., provide a hook). If you really want something like the variable editor, your best bet is to create a new method that generates a GUI and rebuild the variable editor from scratch. If you choose this road keep in mind the licensing restrictions on reverse engineering MATLAB.

Sean de Wolski
Sean de Wolski 2013 年 8 月 8 日
編集済み: Sean de Wolski 2013 年 9 月 11 日
This functionality was added in R2013b. I didn't see it specifically documented in the Release Notes but the changes to how structures work in the release notes is there. Here is an example.
classdef AClass
properties
A = pi;
B = [];
end
methods
function obj = AClass(B)
obj.B = B;
end
end
end
Run:
a = AClass(rand(10));
open('a')
  2 件のコメント
Daniel Shub
Daniel Shub 2013 年 9 月 11 日
Now that R2013b has gone live and you provide some more details or a link to the documentation?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeWhos についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by