Getting Y value for plot having 3 curves in single plot. using App designer dropdown component selecting one curve to read Y data for X data? using GUI
Unrecognized method, property, or field 'InputXAsistocalculateYAxisEditField_2' for class
'selecting_Checking_at_point'.
Did you mean:
K>> app.InputXAsistocalculateYAxisEditField.Value
When I switch the drop down menu to P15 or P20, I get this error. Compare the code for these cases with the code for P10. What is different? P10 works. These don't.
Unrecognized method, property, or field 'property' for class 'matlab.ui.control.DropDown'.
Error in selecting_Checking_at_point/InputXAsistocalculateYAxisEditFieldValueChanged (line 66)
Error using matlab.ui.control.internal.controller.ComponentController/executeUserCallback (line 453)
Error while evaluating NumericEditField PrivateValueChangedFcn.
As for why the values are not appearing in the Y Axis edit field, consider consulting the properties of an edit field. You should set a value using code very similar to what is used to read a value. Again, pay attention to names as well.
Unrecognized method, property, or field 'YAxisEditField_2' for class 'selecting_Checking_at_point'.
I will work with your inputs Will get back to you.
& is there any code for adding more cuves like (P10, P20, P30, P50, P100, ...P500) all files with variable names & size also variable of (x data,y data) in one dot.mat file.
&All P's plotting in single plot.
I should write a code to take all this once & should show in dropdown to reduce huge typing.
&
Same checking Y value at X & P (X = x axis 1st input; P = inbetween P10 & P20 any value 2nd input).
A mat file can hold more than one variable, yes. See the save command for syntax help and examples.
Where is the data coming from? I don't like using mat files to load variables into an app. Can your app create these variables itself? Or is there a data file that can be loaded?