I want to show the parameters of a matlab system object within a figure.
I use get to return the parameters as a struct
I use struct2table to convert it to a table
I use uitable to display the table and get
Warning: This implementation of uitable is no longer supported and will be removed in a future release.
See the documentation for correct uitable usage:
help uitable and doc uitable
Warning: This implementation of uitable is no longer supported and will be removed in a future release.
> In uitable_deprecated
So now I understand that it's deprecated. I'm directed to the help documentation but the documentation does not to help
So I use cell2mat to get an array of values
I write a few lines of matlab to get an array of strings
I use table to create a table from the two arrays
I use uitable on this table and I get
Error using uitable
Functionality not supported with figures created with the figure function.
Error in uitable (line 54)
thandle = builtin('uitable', varargin{:});
I give up