Tranpose of a QT matrix

Go to: Back / Home Page

The transpose command, which can be accessed using the syntax A.', constructs a representation of the transpose of the matrix A (without any complex conjugation).

Contents

Syntax

Example

A = cqt([1, 2+1i], 1);
A.'
ans = 

CQT Matrix of size Inf x Inf


 - Toeplitz part (leading 3 x 4 block): 
   1.0000 + 0.0000i   2.0000 + 1.0000i   0.0000 + 0.0000i   0.0000 + 0.0000i
   0.0000 + 0.0000i   1.0000 + 0.0000i   2.0000 + 1.0000i   0.0000 + 0.0000i
   0.0000 + 0.0000i   0.0000 + 0.0000i   1.0000 + 0.0000i   2.0000 + 1.0000i