How to fastly calculate this real number matrix manipulation?

2 vues (au cours des 30 derniers jours)
Hancheng Zhu
Hancheng Zhu le 25 Fév 2025
Modifié(e) : Matt J le 25 Fév 2025
I have a matrix X with dimensional . I want to calculate a matrix M with the same dimension as X. The element of M is calculated as follows
, where . In this equation, is the element of the matrix M and represents the product of a bunch of factors.
I know using for loop by extracting the element of X can obtain this matrix M but it is not efficient. Is there any other way to fastly calculate this matrix from X?

Réponses (1)

Matt J
Matt J le 25 Fév 2025
Modifié(e) : Matt J le 25 Fév 2025
e=(1:A)';
I=reshape(e,1,1,[]) == repmat( e,1,B);
Xp=permute(X,[3,2,1]);
D=X./(X-Xp);
D(I)=1;
M = ipermute( prod(D,1) ,[3,2,1]);

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by