Array operation shift values
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ali Mukhtar
am 18 Mär. 2021
Kommentiert: Walter Roberson
am 18 Mär. 2021
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 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 18 Mär. 2021
A = zeros(1,5);
for K = [3 5 1]
A = [K, A(1:end-1)]
end
2 Kommentare
Walter Roberson
am 18 Mär. 2021
A = zeros(1,5);
for K = 1:5
A = [randi(9), A(1:end-1)]
end
Siehe auch
Kategorien
Mehr zu Elementary Math finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!