Circular Matrix computation
バージョン 1.2.0.0 (1.36 KB) 作成者:
Massimo Fierro
Commodity function for building a circulant matrix given a vector
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
引用
Massimo Fierro (2025). Circular Matrix computation (https://jp.mathworks.com/matlabcentral/fileexchange/22814-circular-matrix-computation), MATLAB Central File Exchange. に取得済み.
MATLAB リリースの互換性
作成:
R2008b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linuxカテゴリ
- MATLAB > Mathematics > Linear Algebra >
Help Center および MATLAB Answers で Linear Algebra についてさらに検索
タグ
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!