How to calculate Matrix within loops? store values for n numbers fo 3*3 and 6*6 matrix

2 visualizaciones (últimos 30 días)
T(i)=[m(i)*m(i) n(i)*n(i) 2*m(i)*n(i); n(i)*n(i) m(i)*m(i) -2*m(i)*n(i); -m(i)*n(i) m(i)*n(i) (m(i)*m(i))-(n(i)*n)];
I have to calculate T for n1(n Nos.)

Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Jun. de 2015
Replace the assignment with
T(:,:,i) = [m(i)*m(i) n(i)*n(i) 2*m(i)*n(i); n(i)*n(i) m(i)*m(i) -2*m(i)*n(i); -m(i)*n(i) m(i)*n(i) (m(i)*m(i))-(n(i)*n)];
The only thing that changed is the place being assigned to.

Más respuestas (0)

Categorías

Más información sobre Programming 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!

Translated by