What is the meaning of '* in matlab???
Show older comments
What is the meaning of '* in matlab???
Accepted Answer
More Answers (1)
James Tursa
on 25 Oct 2012
Edited: James Tursa
on 25 Oct 2012
0 votes
' 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 Comments
birpal kaur
on 22 Apr 2016
what is the meaning of (a .*b) in matlab
Walter Roberson
on 22 Apr 2016
C = A.*B multiplies arrays A and B element by element and returns the result in C.
Categories
Find more on Logical in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!