필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Hi! How can I extract from the sp3data file just the lines that starts with the *. I need those days in matrix and after that to transform the dates in julian dates. I need the lines to be " 2011-04-19 0:00; 2011-04-19 0:15 and so on. Thank you

조회 수: 1 (최근 30일)
you can see what I obtain with this code:
fmt=['*' repmat('%f ',1,8)];
fid=fopen('sp3data.txt');
PG_timp=[];
while ~feof(fid)
l=fgetl(fid); % read a record
if strfind(l,'*')
PG_timp=[PG_timp; cell2mat(textscan(l,fmt,'collectoutput',1))];
end
end
fid=fclose(fid);

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by