Unrecognized property string for class Panel

37 views (last 30 days)
as title
I created the gui which hane one bottom and panel , I want to show data on the panel(name:fitting1)
above is my coding--------------------------------------
function pushbutton2_Callback(hObject, eventdata, handles)
data=xlsread('data1.xlsx');
num1=xlsread('data1.xlsx','A131:A387');
num2=xlsread('data1.xlsx','B131:B387');
x=num1;
y=num2;
fitobject=fit(x,y,'poly1');
a=coeffvalues(fitobject);
set(handles.fitting1,'string','a')
but command window said 'Unrecognized property string for class Panel''
how should i do ? I want someone help

Accepted Answer

Steven Lord
Steven Lord on 17 Jan 2023
Since handles.fitting1 is a Panel object according to the error message, let's look at the list of Panel properties and see if String is listed among them. It is not. The only three instances of "string" on that page are in the descriptions of allowed types for the Title, Tag, and Tooltip properties. Did you intend to set one of those properties (perhaps the Title?) or a String property of one of the Children of the Panel?
  1 Comment
BOZHENG
BOZHENG on 18 Jan 2023
well i saw the inspector , but i edit the tag and tittle ,so I do not really how i should check can you step by step tell me?

Sign in to comment.

More Answers (0)

Categories

Find more on Structures 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!