フィルターのクリア

10x10x15 matrix integration.

2 ビュー (過去 30 日間)
Özgür Alaydin
Özgür Alaydin 2021 年 9 月 17 日
回答済み: Star Strider 2021 年 9 月 17 日
Dear All
I have data composes of A=10x10x15 matrix (attached). I want to integrate this data over X and Y axis. Each axis is also 10x10x15 matrix (attached data). How to do it?
Equation is integral of A.*X.*Y.*A over X and Y.
Thanks a lot

採用された回答

Star Strider
Star Strider 2021 年 9 月 17 日
What are ‘X and Y axis’?
I would use trapz and approach it as:
AXY = A.*X.*Y.*A;
Xint = trapz(AXY,1); % Integrate Columns (Dimension 1)
Yint = trapz(AXY,2); % Integrate Rows (Dimension 2)
Xintsq = squeeze(Xint)
Yintsq = squeeze(Yint)
This gives ‘Xint’ as a (1x10x15) matrix and ‘Yint’ as a (10x1x15) matrix. After the squeeze calls, they are both (10x15) matrices.
Alternatively, do successive integrations:
XYint = trapz(Xint);
producing a (1x15) vector.
Experiment with this approach to get the result you want (since I have absolutely no idea what that is).
.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumerical Integration and Differentiation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by