Borrar filtros
Borrar filtros

A problem with transpose of a symbolic matrix

1 visualización (últimos 30 días)
Marco
Marco el 17 de Dic. de 2012
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] ?

Respuesta aceptada

Walter Roberson
Walter Roberson el 17 de Dic. de 2012
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.'

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by