Specific interval of imported data
Ältere Kommentare anzeigen
Hi,
I want to sort out a specific interval in my imported data. More specifically i want to use the data between row 24 - 48 and here's how far i've come:
import1=zeros(24,1);
for j=1:36
for i=[24:48]
import1(i,j)=allahus_2017till2021(i,j);
end
end
Now when i want to plot this, i get the numbers before 24 (0-24) as well as zeroes, see picture.

How do i write so that it starts from 24 and end at 48?
Best regards
Antworten (1)
Kategorien
Mehr zu Shifting and Sorting Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!