A problem with transpose of a symbolic matrix

조회 수: 3 (최근 30일)
Marco
Marco 2012년 12월 17일
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] ?

채택된 답변

Walter Roberson
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 CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by