how can i divide elements of matrix M_0(m,n,k) by the elements of M_1(m,n,k) ?
1 view (last 30 days)
Show older comments
how can i divide elements of matrix M_0(m,n,k) by the elements of M_1(m,n,k) ?
0 Comments
Accepted Answer
Image Analyst
on 7 Aug 2015
Use dot slash to divide element-by-element:
outputMatrix = M_0 ./ M_1;
0 Comments
More Answers (0)
See Also
Categories
Find more on Numeric Types in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!