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!