¿como puedo hacer para multiplicar matrices de cualquie dimension en el guide?

2 views (last 30 days)
Y que la respuesta tabla

Answers (1)

mizuki
mizuki on 25 Oct 2016
Tu pregunta esta diviendo es tres partes:
  1. Multiplicado matrices de cualquier dimension
  2. Escribirlo en GUIDE
  3. Mostrado los como una tabla (mostrado como UITABLE)
#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

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!