Multiply a 3D matrix with a 2D matrix

前端 未结 10 1262
盖世英雄少女心
盖世英雄少女心 2020-11-28 09:29

Suppose I have an AxBxC matrix X and a BxD matrix Y.

Is there a non-loop method by which I can multiply

10条回答
  •  攒了一身酷
    2020-11-28 10:10

    You could "unroll" the loop, ie write out all the multiplications sequentially that would occur in the loop

提交回复
热议问题