how to take integer value in mysql to matlab ??

1 Ansicht (letzte 30 Tage)
dewi hastuti
dewi hastuti am 17 Mai 2018
Kommentiert: dewi hastuti am 18 Mai 2018
Dear all, I wish take integer value for is the price of the stuff in mysql.
set(handles.text4,'String',mydata(1,2));
set(handles.text10,'string',mydata(1,1));
for example, mydata(1,1) is the price of the stuff in mysql
Thanks,
Dewi

Akzeptierte Antwort

Geoff Hayes
Geoff Hayes am 17 Mai 2018
Dewi - if mydata(1,1) is an integer, then convert it to a string with num2str and set that string in your text control
set(handles.text4,'String',num2str(mydata(1,2)));
set(handles.text10,'string',num2str(mydata(1,1)));

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by