how to take integer value in mysql to matlab ??

1 visualización (últimos 30 días)
dewi hastuti
dewi hastuti el 17 de Mayo de 2018
Comentada: dewi hastuti el 18 de Mayo de 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

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 17 de Mayo de 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)));

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by