Effacer les filtres
Effacer les filtres

how to calculate product of two 3D matrices (both 101 by 101 by 101 ) in matlab ?

1 vue (au cours des 30 derniers jours)
GNANASEKARAN S
GNANASEKARAN S le 3 Fév 2024
Commenté : Matt J le 4 Fév 2024
Let u be the 3D (101 by 101 by 101) matrix. I have to calculate u^2.

Réponses (3)

Hassaan
Hassaan le 3 Fév 2024
Modifié(e) : Hassaan le 3 Fév 2024
For a 3D matrix, there's no standard matrix multiplication operation.
Assuming you want to square each element of a 3D matrix:
% Generate a 3D matrix u of size 101x101x101 with dummy data
u = rand(101, 101, 101); % For example, using random numbers
% Calculate u^2 element-wise
u_squared = u .* u;
% Display some of the squared values to verify
disp(u_squared(1:2, 1:2, 1:2)); % Display a small portion to check
(:,:,1) = 0.5614 0.7014 0.2341 0.0030 (:,:,2) = 0.1137 0.7113 0.3022 0.0026
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
  • Technical Services and Consulting
  • Embedded Systems | Firmware Developement | Simulations
  • Electrical and Electronics Engineering
Feel free to contact me.
  2 commentaires
GNANASEKARAN S
GNANASEKARAN S le 4 Fév 2024
There is a difference between normal product and element by element product
Walter Roberson
Walter Roberson le 4 Fév 2024
Normal product is not defined for 3D matrices.

Connectez-vous pour commenter.


Matt J
Matt J le 3 Fév 2024
u=randi(10, 3,3,2)
u =
u(:,:,1) = 3 9 3 10 2 7 6 10 7 u(:,:,2) = 6 2 5 7 8 1 6 3 4
u.^2
ans =
ans(:,:,1) = 9 81 9 100 4 49 36 100 49 ans(:,:,2) = 36 4 25 49 64 1 36 9 16
  2 commentaires
GNANASEKARAN S
GNANASEKARAN S le 4 Fév 2024
yeah. But i expct the product not an element by element operation
Matt J
Matt J le 4 Fév 2024
Perhaps you are looking for pagemtimes or tensorprod.

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 3 Fév 2024
u^2 is not defined for 3D matrices.

Catégories

En savoir plus sur Operating on Diagonal Matrices dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by