Clear Filters
Clear Filters

how can i divide elements of matrix M_0(m,n,k) by the elements of M_1(m,n,k) ?

2 views (last 30 days)
how can i divide elements of matrix M_0(m,n,k) by the elements of M_1(m,n,k) ?

Accepted Answer

Image Analyst
Image Analyst on 7 Aug 2015
Use dot slash to divide element-by-element:
outputMatrix = M_0 ./ M_1;

More Answers (0)

Categories

Find more on Data 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!