How to specify a number to the specified position in the array?
조회 수: 3 (최근 30일)
이전 댓글 표시

댓글 수: 0
채택된 답변
추가 답변 (1개)
the cyclist
2019년 10월 13일
편집: the cyclist
2019년 10월 13일
There's probably not an built-in function that does just that, but it's easy to do it with basic array manipulations. Here is one way.
newData = 1:20; % Your example "new" data
newNewData = [newData(1:10); newData(20:-1:11)]; % Make even newer data, temporarily in 2-d array
newNewData = newNewData(:)' % Make the newer data into a row array
댓글 수: 5
the cyclist
2019년 10월 14일
편집: the cyclist
2019년 10월 14일
When you say "random", do you mean the length of the vector is random? Or that the values in the vector are random?
If your data is
[2 3 5 7 11]
what would you want the output to be?
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!