subtraction ele by ele
显示 更早的评论
hi all,
consider any two matrix A and B of 3X3 . i want to subtract every element of A from each element of B one by one. kindly tell the command please.
1 个评论
Stephen23
2015-4-6
MATLAB allows you to do this all at once using vectorized code, rather than one-by-one. This is faster, neater, and much less buggy code!
>> A = rand(3);
>> B = rand(3);
>> A - B
ans =
-0.15016 -0.043791 0.13661
0.74818 0.14698 0.12512
-0.84361 -0.70274 0.041771
采纳的回答
更多回答(1 个)
David Young
2015-4-5
-
1 个评论
Star Strider
2015-4-5
@4 X 4 —
David Young’s answer isn’t blank but maximally laconic. It is the ‘minus’ sign that will work for equally-sized matrices.
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!