What is the meaning of '* in matlab???
137 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ganesh s
il 25 Ott 2012
Commentato: Walter Roberson
il 22 Apr 2016
What is the meaning of '* in matlab???
0 Commenti
Risposta accettata
Sachin Ganjare
il 25 Ott 2012
It means transpose & multiply.
But I think functionality varies across the new & old versions of matlab.
Refer link below for details:
Hope it helps!!!
0 Commenti
Più risposte (1)
James Tursa
il 25 Ott 2012
Modificato: James Tursa
il 25 Ott 2012
' is conjugate transpose operator
- is matrix multiply operator
A'*B means conjugate transpose of A multiplied by B, which is the same thing as transpose of A times B for real variables.
2 Commenti
Walter Roberson
il 22 Apr 2016
C = A.*B multiplies arrays A and B element by element and returns the result in C.
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!