How to vectorize this code using bsxfun? For loops on braces/cell arrays.
Dimensions:
- nlf 4; nout 4;
- KuuinvKuy 4x4 cell, each cell 50x650 double;
- Kuuinv 1x4 cell, each cell 50x50 double;
- Kyu 4x4 cell, each cell 650x50 double;
Kyy 4x1 cell, each cell 650x1 double.
for r =1: model.nlf, for k =1: model.nout, model.KuuinvKuy{r,k} = model.Kuuinv{r}*model.Kyu{k,r}'; %' end end for k =1: model.nout, KyuKuuinvKuy = zeros(size(model.Kyy{k},1),size(model.Kyy{k},1)); for r =1: model.nlf, KyuKuuinvKuy = KyuKuuinvKuy + model.Kyu{k,r}*model.KuuinvKuy{r,k}; end end
Thank you for help or tips and tricks.