import data into matlab

1 visualización (últimos 30 días)
Radoslav Vandzura
Radoslav Vandzura el 7 de Oct. de 2015
Comentada: Radoslav Vandzura el 8 de Nov. de 2015
I have imported data into uitable in gui, but data are large and appear statement: Matlab is not responding.
Is uitable appropriate for importing large files?

Respuesta aceptada

Walter Roberson
Walter Roberson el 7 de Oct. de 2015
Editada: Walter Roberson el 7 de Oct. de 2015
uitable() does not import data. uitable is for creating table structures in graphics.
There is a table() data type which has various import routines including readtable: is that the routine you are using? What kind of file are you importing the data from?
  18 comentarios
Walter Roberson
Walter Roberson el 8 de Nov. de 2015
You can get() the Data property from the uitable handle.
Radoslav Vandzura
Radoslav Vandzura el 8 de Nov. de 2015
And what is code of this?
I wrote this:
function pushbutton4_Callback(hObject, eventdata, handles)
waitfor(gcf)
x=0.5;
waitbar(x+0.3,h,'Data are saving')
pause(3)
get(handles.edit3,'data')%edit3 is tag for uitable object in guide
x=0.8;
waitbar(x+0.2,h,'Data are succesfully saved')
pause(2)
close(h)
But it doesnt work.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by