Custom Object using plot toolbar
3 views (last 30 days)
Show older comments
I am designing a class and I want the user to be able to use the built in plotting tools in the PLOTS toolbar.
What I have tried:
- object converter to double.
- implemting a plot function
While I know I can define my own GUI or just have the user use the plot() command I would like to have the applicable built in graph types be selected in the PLOTS toolbar.
Sample Code:
classdef classA < handle
properties
data double
other_stuff
end
methods
function obj = classA()
obj.data = [1,2,3,4,5];
obj.other_stuff = 'Something';
end
function result = double(obj)
result = obj.data;
end
function h = plot(obj)
h = plot(obj.data);
end
end
end
Calling Code:
a = classA();
The plots in the tab do not show up.
0 Comments
Answers (1)
Ganesh Regoti
on 29 Jul 2019
The PLOTS gallery shows the built-in plots that are suitable for the selected variables from the workspace. But a class object encapsulates various properties along with methods in it. So, whenever a class object is selected, there are no graphs in PLOTS gallery that can plot a class object.
2 Comments
Ganesh Regoti
on 8 Aug 2019
Hi Joel,
If you want to implement all the built-in plots for your class object, you can overload the functions and following link can help you in writing code for all the built-in plots
Why we cannot access PLOTS gallery with class object?
A class object follows all the specifications of OOP and one of the specifications is Data Hiding, data is only visible to the object but not to external environment. So, PLOTS gallery cannot suggest any plot as it does not see any data.
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!