create a matrix using a vector such that each row is one offset of the previous row
조회 수: 2 (최근 30일)
이전 댓글 표시
Let say I have a vector v = [v1, v2, v3, v4, ..., vn], I would like to create a matrix using the vector such that each row is one offset of the previous row, i.e.
matrix = [v1 v2 v3;
v2 v3 v4;
v3 v4 v5;
⋮
v(n-2) v(n-1) v(n)]
How can I achieve this?
댓글 수: 0
답변 (1개)
Akira Agata
2020년 6월 26일
If the output matrix is always N-by-3, the following straight-forward way might be enough:
matrix = [v(1:end-2);v(2:end-1);v(3:end)]';
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!