Converting finite QT matrices to dense matrices

Go to: Back / Home Page

The command full returns a dense representation of a QT matrix, similarly to what the MATLAB command does for sparse matrices. Clearly, this only makes sense for matrices of finite size.

Contents

Syntax

Example

A = cqt([1 2 3], [1 4], rand(2), rand(3), 7, 7);
full(A)
ans =

    1.7875    4.1744         0         0         0         0         0
    2.7200    1.2320    4.0000         0         0         0         0
    3.0000    2.0000    1.0000    4.0000         0         0         0
         0    3.0000    2.0000    1.0000    4.0000         0         0
         0         0    3.0000    2.0000    1.2071    4.2161    0.9767
         0         0         0    3.0000    2.3818    1.6353    4.0466
         0         0         0         0    3.2321    2.8748    1.4601