Circular Matrix computation

버전 1.2.0.0 (1.36 KB) 작성자: Massimo Fierro
Commodity function for building a circulant matrix given a vector
다운로드 수: 981
업데이트 날짜: 2009/2/2

라이선스 보기

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 (2024). Circular Matrix computation (https://www.mathworks.com/matlabcentral/fileexchange/22814-circular-matrix-computation), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2008b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
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