Filter löschen
Filter löschen

Get the value of one .m file and use those values to plot in GUI

2 Ansichten (letzte 30 Tage)
ARN
ARN am 12 Dez. 2018
Kommentiert: madhan ravi am 12 Dez. 2018
Hi!
lets suppose i have a .m file which contains the following code
a=[1:0.01:10]
x=sin(2.*pi.*a)
plot(a,x)
check
where check.m is GUI file which takes the value a and x plot it in axes1.
Question is : Even the values of a and x are in workspace check still does not get those values. How can i give the values of a and x in OpeningFcn?
Thanks

Antworten (1)

madhan ravi
madhan ravi am 12 Dez. 2018
Bearbeitet: madhan ravi am 12 Dez. 2018
Make the check as a function file and create two input arguments(parameterising function) thereby passing the values as input arguments.
check(a,x)
  4 Kommentare
ARN
ARN am 12 Dez. 2018
Ok thanks! but i want to avoid making a function as it will have more than 21 parameters to start with; which will be more complicated than needed.
I think there is a solution where you can just access it through object.xxx or handles.xxx ?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Produkte


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by