Specific interval of imported data
이전 댓글 표시
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
답변 (1개)
import1 = allahus_2017till2021(24:48,:);
카테고리
도움말 센터 및 File Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!