Info

此问题已关闭。 请重新打开它进行编辑或回答。

is there a way to implement a for loop in which matrix multiplication is exist?

1 次查看(过去 30 天)
I want to implement a For loop using the Simulink, in which some matrix multiplications exist. The related code is as follows: for i=1:r Y(i,t)=W(:,i,t-1)'*x(:,i,t); can anyany body help me?

回答(1 个)

Andrei Bobrov
Andrei Bobrov 2017-7-23
ii = 1:r;
t = 2:n;
k = r*(n-1);
Y = reshape(reshape(W(:,ii,t),[],k)'*reshape(x(:,ii,t-1),[],k),r,[]);

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by