What is the meaning of '* in matlab???

207 views (last 30 days)
What is the meaning of '* in matlab???

Accepted Answer

Sachin Ganjare
Sachin Ganjare on 25 Oct 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!!!

More Answers (1)

James Tursa
James Tursa on 25 Oct 2012
Edited: James Tursa on 25 Oct 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 Comments
birpal kaur
birpal kaur on 22 Apr 2016
what is the meaning of (a .*b) in matlab
Walter Roberson
Walter Roberson on 22 Apr 2016
C = A.*B multiplies arrays A and B element by element and returns the result in C.

Sign in to comment.

Products

Community Treasure Hunt

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

Start Hunting!