How to create list of checkboxes and plot checked boxes

11 views (last 30 days)
Hi, I use a script to import data (multiple measurements) in a struct with several fields. I plot two of these fields(specific: viscosity and temperature) and use an other field for the name in the legend. I am saving new measurements to the already excisting data in the struct. Now I would like to make checkboxes so that only the selected measurements are plotted in a figure.
So a checkbox should include the specific measurement to a new struct which I use to plot the figure.
I cant use a for loop because this is possible in combination with a function. And I cant use the data in my workspace in a function. I tried working with GUIDE and:
checkbox = uicontrol('style','checkbox','units','pixels',...
but it didnt work. Does someone know how to do this?

Answers (1)

Vinod Sudheesh
Vinod Sudheesh on 27 May 2015
Hi Florian,
I have a few suggestions for you regarding this question
1) You could have the "plot" and "delete" operations of the data corresponding to a "checkbox" performed in the "Callback" function of the "Checkbox" object. You could query the the "Value" property of the "checkbox" to see if it is in "checked mode" or "unchecked mode".
2) If the "Variable" of interest say "x" is available in the "base workspace", you could bring it inside a function by using the command below
x=evalin('base','x');
Hope this helps !
Thanks Vinod
  1 Comment
Florian Bastiaens
Florian Bastiaens on 27 May 2015
He Vinod,
Thank you for the response. I fixed both problems. The second one using your evalin. Thanks!

Sign in to comment.

Categories

Find more on Migrate GUIDE Apps 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!