Unrecognized property string for class Panel

25 visualizaciones (últimos 30 días)
BOZHENG
BOZHENG el 17 de En. de 2023
Comentada: BOZHENG el 18 de En. de 2023
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

Respuesta aceptada

Steven Lord
Steven Lord el 17 de En. de 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 comentario
BOZHENG
BOZHENG el 18 de En. de 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?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by