How to save values calculated in each iteration of a loop into uitable to display on GUI?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tien Tran
el 5 de Mayo de 2016
Comentada: Tien Tran
el 7 de Mayo de 2016
For example: y = 5*x;
for x=1:10
y(x) = 5*x;
end
When x = 1; y = 5; I want to display these values on uitbale; and then display forward for each iteration to the end of loop
0 comentarios
Respuesta aceptada
CS Researcher
el 5 de Mayo de 2016
You can do this:
data = [x(:) y(:)];
set(handles.uitable,'Data',data); % Assuming handles.uitable is the handle to the uitable in the GUI
Hope this helps!
8 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!