[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Gallery (or circulant matrices)
From: |
Carnë Draug |
Subject: |
Re: Gallery (or circulant matrices) |
Date: |
Sat, 8 Jun 2013 16:52:09 +0100 |
On 8 June 2013 15:39, Nir Krakauer <address@hidden> wrote:
> Also, there are some functions in the linear-algebra package that
> might be helpful if you're interested in circulant matrices:
> http://octave.sourceforge.net/linear-algebra/overview.html#Circulantmatrices
I noticed that circulant_make_matrix does the same as gallery
("circul", v)' so I just deprecated it. It also performs a bit faster:
octave> t = cputime(); gallery ("circul", 1:x)'; cputime() - t
ans = 0.0040010
octave> t = cputime(); circulant_make_matrix(1:x); cputime() - t
ans = 0.020001
Carnë