Gradient Computation of Matrix
11 ビュー (過去 30 日間)
古いコメントを表示
Given a Matrix for example:

I need two Compuation Matrix such that
Gx = 

Gy = 

I am trying using gradient but not getting the exact results.
I also need to calculate the Magnitude of Gx and Gy such that my final matrix results as:
Resultant Matrix :

Also need to caluclate the Angle of Gx and Gy (arctan(Gy/Gx)) degree.

All element values should be rounded off in all the matrix.
I need a general code which do not depend(size of input matrix) on matrix rows and coloumns of the given input matrix.
Please help with MATLAB Code.
0 件のコメント
回答 (1 件)
Sulaymon Eshkabilov
2021 年 6 月 3 日
[Gx, Gy] = gradient(G)
And dont forget elementwise operation: ./
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!