I have a table with 2 columns and 2 rows, to display all data in table I use the get(handles.uitable1, 'data') function.
But I want to display only one cell, for example the first column and the first row (1,1). How to format function now? I would be very thankful.

 Respuesta aceptada

Paulo Silva
Paulo Silva el 1 de Mzo. de 2011

1 voto

Simple example
Data = {1, 2
3,4}
Data(:,1) %first column
Data(1,:) %first row
Data(1,1) %just the first cell

3 comentarios

Eggo Ogge
Eggo Ogge el 1 de Mzo. de 2011
Thanks, that example is good, it's working in matlab, but when i wrote: get(handles.uitable1, 'data(1,1)') in matlab gui, it sends error. There are some difference in matlab gui.
Walter Roberson
Walter Roberson el 1 de Mzo. de 2011
Data = get(handles.uitable1,'Data');
Data(1,1)
Eggo Ogge
Eggo Ogge el 1 de Mzo. de 2011
it works, thank you!!

Iniciar sesión para comentar.

Más respuestas (1)

deekay uto
deekay uto el 1 de Mzo. de 2011

0 votos

sorry for disturbing, i want to ask, how i can call function in train button...i hve been asked to develop a system to predict rainfall,it required GUI..so i dont knw how to call bck the function at train button. on my gui i got mse,epoch,input node,stimulate and error. i really need ur opinion...regard

2 comentarios

KAE
KAE el 12 de Jul. de 2017
Ask as a separate question
Walter Roberson
Walter Roberson el 12 de Jul. de 2017
KAE: deekay uto would not have been notified about your comment. And as it is now 6 years later, deekay uto is probably not checking for responses.

Iniciar sesión para comentar.

Categorías

Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 1 de Mzo. de 2011

Comentada:

el 12 de Jul. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by