A problem with transpose of a symbolic matrix
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi,
I don't understand the reason why if I have a matrix of symbolic like
Y =
[ 0, k]
[ 0, 0]
[ 0, 0]
If I try
Y'
it returns
ans =
[ 0, 0, 0]
[ conj(k), 0, 0]
How can I transpose as
Y' = [0 0 0; k 0 0] ?
댓글 수: 0
채택된 답변
Walter Roberson
2012년 12월 17일
y' is not the transpose of y. y' is the conjugate transpose of y. If you want the plain transpose, use that appropriate operator, .'
y.'
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!