summation inside for loop

1 次查看(过去 30 天)
Mert Demir
Mert Demir 2021-7-21
编辑: Mert Demir 2022-2-23
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.

回答(1 个)

Torsten
Torsten 2021-7-21
vec = ones(1,5)*Q_z.' ;
exp2(1:100,:) = vec ;
  1 个评论
Mert Demir
Mert Demir 2021-7-21
Thanks but i need to use v_e in the form. v_e will not be ones(100,5) later on. it is just an initial guess. I will keep iterate that.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by