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

조회 수: 1 (최근 30일)
how can i divide elements of matrix M_0(m,n,k) by the elements of M_1(m,n,k) ?

채택된 답변

Image Analyst
Image Analyst 2015년 8월 7일
Use dot slash to divide element-by-element:
outputMatrix = M_0 ./ M_1;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by