How to calculate Matrix within loops? store values for n numbers fo 3*3 and 6*6 matrix
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Triveni
el 4 de Jun. de 2015
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.)
0 comentarios
Respuesta aceptada
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.
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!