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

2 views (last 30 days)
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.)

Accepted Answer

Walter Roberson
Walter Roberson on 4 Jun 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.

More Answers (0)

Categories

Find more on Programming 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!