Array operation shift values
조회 수: 1 (최근 30일)
이전 댓글 표시
i have an array of A=[0 0 0 0 0 ] im sending first value "3" array become A=[3 0 0 0 0] ... then when i send next value for e.g. "5" then array should be A=[5 3 0 0 0] and then if "1" A=[ 1 5 3 0 0] . i cant identify command for this purpose
댓글 수: 0
채택된 답변
추가 답변 (1개)
Walter Roberson
2021년 3월 18일
A = zeros(1,5);
for K = [3 5 1]
A = [K, A(1:end-1)]
end
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!