What is the meaning of '* in matlab???
조회 수: 137 (최근 30일)
이전 댓글 표시
What is the meaning of '* in matlab???
댓글 수: 0
채택된 답변
Sachin Ganjare
2012년 10월 25일
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
추가 답변 (1개)
James Tursa
2012년 10월 25일
편집: James Tursa
2012년 10월 25일
' 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
Walter Roberson
2016년 4월 22일
C = A.*B multiplies arrays A and B element by element and returns the result in C.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!