What is the difference between a^3 and a.^3 if a is a matrix?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Eduardo Gallegos
il 29 Ott 2022
Modificato: James Tursa
il 29 Ott 2022
C = magic(3)
D = C.^3;
D_max = max(D(:));
E = C^3
0 Commenti
Risposta accettata
James Tursa
il 29 Ott 2022
Modificato: James Tursa
il 29 Ott 2022
E = C^3 is a matrix power, equivalent to E = C*C*C, where these are all matrix multiplies.
D = C.^3 is element-wise power, where D(1,1) = C(1,1)*C(1,1)*C(1,1), etc.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!