简体   繁体   中英

How to multiply two matrix in matlab without loop

给定两个 100x3 矩阵 A 和 B。如何在没有循环的情况下在 Matlab 中将它们乘以输出矩阵(抱歉格式错误)。

a11*b11 a12*b12 a13*b13 a21*b21 a22*b22 a23*b23 ...

使用点进行元素乘法A.*B

如果我们说输出矩阵是 C,那么: C = A.*B

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM