- Multiplicado matrices de cualquier dimension
- Escribirlo en GUIDE
- Mostrado los como una tabla (mostrado como UITABLE)
¿como puedo hacer para multiplicar matrices de cualquie dimension en el guide?
2 views (last 30 days)
Show older comments
Y que la respuesta tabla
0 Comments
Answers (1)
mizuki
on 25 Oct 2016
Tu pregunta esta diviendo es tres partes:
#1: Usando . (el punto) antes de multiplicado:
A = rand(3);
B = rand(3);
preg_multiplicado = A.*B
#2: Si quieres calcular cuando abrir GUIDE, escribes el calculo en OpeningFcn. Nota - "handles" pasa el resultado a otro funciones de el GUIDE codigo. Por ejemplo,
handles.preg_multiplicado = A .*B;
Hace que handles.preg_multiplicado usando en otro funciones.
#3: Definido un valor a handles.uitable1.Data muestra el resultado en uitable. Por ejemplo,
handles.uitable1.Data = A .* B;
Vea el adjunto - guide_ex.m & guide_ex.fig
0 Comments
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!