Clear Filters
Clear Filters

static text did not show data

1 view (last 30 days)
BOZHENG
BOZHENG on 19 Jan 2023
Edited: Voss on 23 Aug 2023
as tilte i create GUI and I want to push buttom and then text show my data. below is my coding
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')
it show 'a' on the static text how i should change
  1 Comment
Misa Taguchi
Misa Taguchi on 14 Feb 2023
Hi. Could you tell me more which part exactly you would like to change? or could you share the whole script you made?

Sign in to comment.

Answers (1)

Voss
Voss on 23 Aug 2023
set(handles.fitting1,'string',num2str(a))

Categories

Find more on Data Import and Export 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!