fast matrix multiplication in Matlab

前端 未结 5 2007
孤城傲影
孤城傲影 2020-12-21 10:46

I need to make a matrix/vector multiplication in Matlab of very large sizes: \"A\" is an 655360 by 5 real-valued matrix that are not necessarily sparse and \"B\" is a 655360

5条回答
  •  离开以前
    2020-12-21 11:08

    Your #1 option, if this is your bottleneck, is to re-examine your algorithm. See this question Optimizing MATLAB code for a great example of how choosing a different algorithm reduced runtime by three orders of magnitude.

提交回复
热议问题