Circular Matrix computation

Commodity function for building a circulant matrix given a vector
981 Downloads
Aktualisiert 2. Feb 2009

Lizenz anzeigen

circulant Computes the circulant matrix of a vector.

circulant(vec) is a max(size(vec))-by-max(size(vec)) circulant
matrix built with the elements of vec

Note: The parameter may be either a column or row vector

Example:
v = [ 1 2 3 4 ];
circulant( v )

ans =

1 2 3 4
2 3 4 1
3 4 1 2
4 1 2 3

Zitieren als

Massimo Fierro (2024). Circular Matrix computation (https://www.mathworks.com/matlabcentral/fileexchange/22814-circular-matrix-computation), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2008b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Linear Algebra finden Sie in Help Center und MATLAB Answers
Quellenangaben

Inspiriert von: Hysteresis Thresholding

Inspiriert: Circulant matrix, circulant

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.2.0.0

Slightly modified the help and matched the file description with it

1.1.0.0

UPDATE Feb 02, 2009: added help

1.0.0.0