Ältere Kommentare anzeigen
i have an array of data with size of (1,361). I need to select and store all the data from (1,121) to (1,241) into anther array. How can i do this?
Akzeptierte Antwort
Weitere Antworten (1)
the cyclist
am 18 Mär. 2012
% Input
A = rand(1,361);
% Select and store
B = A(121:241);
Kategorien
Mehr zu Shifting and Sorting Matrices finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!