What is the meaning of '* in matlab???
Mostrar comentarios más antiguos
What is the meaning of '* in matlab???
Respuesta aceptada
Más respuestas (1)
James Tursa
el 25 de Oct. de 2012
Editada: James Tursa
el 25 de Oct. de 2012
0 votos
' 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 comentarios
birpal kaur
el 22 de Abr. de 2016
what is the meaning of (a .*b) in matlab
Walter Roberson
el 22 de Abr. de 2016
C = A.*B multiplies arrays A and B element by element and returns the result in C.
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!