How do I calculate the gradient of matrix A multiplied by the gradient of matrix B(A and B are arbitrary matrices)

7 views (last 30 days)
there are two matrices,first calculate the gradient of them,then,multiply one gradient by another gradient

Answers (1)

Image Analyst
Image Analyst on 31 May 2014
Do gradientA .* gradientB to do element by element multiplication, or gradientA * gradientB to do a matrix multiplication.

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!