summation inside for loop
Show older comments
Have a good day. I am trying to find an easy way of writing a loop below:
v=rand(100,3)
for iz=1:3
for iznext=1 expv(:,iz)=v(:,iz)*Q_z(iz,iznext)+v(:,iz)*Q_z(iz,iznext+1)+v(:,iz)*Q_z(iz,iznext+2);
end
end
Thanks in advance.
Answers (1)
Torsten
on 21 Jul 2021
0 votes
vec = ones(1,5)*Q_z.' ;
exp2(1:100,:) = vec ;
1 Comment
Mert Demir
on 21 Jul 2021
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!