如何在 MATLAB 中将矩阵中每一列的每一列中的元素相乘?
例如,给定矩阵,
A = [ 1 2 3 ; 4 5 6; 7 8 9];
如何将列元素相乘以获得结果 result=[1*4*7 2*5*8 3*6*9]
For example, given the matrix
A = [ 1 2 3 ; 4 5 6; 7 8 9];
how do I multiply the column elements to get the result as result=[1*4*7 2*5*8 3*6*9]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用带有可选参数的
prod
函数,该参数指示要沿哪个维度执行乘法。对于你的情况,Use the
prod
function with an optional argument indicating along which dimension the multiplication is to be carried out. For your case,prod(A)
给出了这个结果。prod(A)
gives you this result.