I am newbie Matlab user and I have a basic question for one of you. I have two matrix P and Q (both of them have size 10x10). How can I write this operation in MATLAB?
$T_{1}=Q*P\\ T_{2}=T_{1}*P\\ T_{3}=T_{2}*P\\ \ldots\\ T_{n+1}=T_{n}*P$
In addition, I want to keep every matrix $T_{n}$ for every step. Thanks for helps!
If you want to keep them, then you can do this:
Note that the curly braces are required for use of cell arrays.