Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.