Change the name of structure inside a cell

조회 수: 6 (최근 30일)
Tiago Dias
Tiago Dias 2018년 12월 18일
편집: Jan 2018년 12월 18일
Hello,
I got the cell names stuff with 2 field values. When I open "stuff" i see a message "1x1 struct", can i change this display to like say "1x1 NAMEIWANT"?
names = {'f1', 'f2'};
values = {1 2};
args=[names;values];
structure = struct(args{:});
stuff{1,1} = structure;
stuff{1,2} = structure;
Thanks for your time, happy holidays
  댓글 수: 3
Tiago Dias
Tiago Dias 2018년 12월 18일
ok, so how can I make something like these?
Picture 1.PNG
Jan
Jan 2018년 12월 18일
@Tiago: It is not meaningful to create a kind of table, which contains such an output for the given input. "1x1 fsrModel" is nothing, which explains the contents in a meaningful way in the data browser. This tool is designed to show the class of the variable and then "1x1 struct" is perfect. If you want to display something else, create you own uitable in a GUI, but not the standard browser for data.

댓글을 달려면 로그인하십시오.

채택된 답변

Guillaume
Guillaume 2018년 12월 18일
In your screenshot, mlrModel, fsrModel, etc. are the name of classes. They may look like structures but these things are absolutely not structures, they're objects, instances of classes. In order to get a mlrModel you would have to call whichever function creates such objects, possibly the class constructor, with the appropriate inputs. While matlab provides a way to convert objects to structures there is no reverse operation other than what is provided explicitly by whomever wrote these classes.
In conclusion, look at the documentation of whatever library you're using to find out how to create these objects. They're not structures.
  댓글 수: 8
Guillaume
Guillaume 2018년 12월 18일
Tiago, I think you need to backtrack a bit. All this display we've been talking is with the variable browser and command line display. They are designed to show you the class of whatever is stored in the cell array (unless it's a small enough matrix or char array) because that's what useful for writing and debugging code.
So, what is your use case? You seem to be using that display for other purpose. Perhaps you should be using a GUI instead as suggested by Stephen.
Jan
Jan 2018년 12월 18일
편집: Jan 2018년 12월 18일
uitable('Data', {'Name 1', 17.3, 'fsrModel'; 'Name 2', 3.14, 'fsrModel'})

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Tiago Dias
Tiago Dias 2018년 12월 18일
@Stephen Cobeldick the objective was just when i open "stuff" to see that the column 1 is label with a specific name and column 2 is label to another name
  댓글 수: 1
Jan
Jan 2018년 12월 18일
@Tiago: This is the section for answers. Please post comments as comments. Thanks.
Then problem is hidden in "just when I open". Opening a variable in the WorkspaceBrowser has a specific purpose. You ask for a method to create a special class just to missuse the WorkspaceBrowser to show a wanted output. This is indirect ond too complicated, because as said already it is much easier to create a new GUI instead of using the WorkspaceBrowser. Then you have the complete freedom to display what you want.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by