help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: entering tide data


From: Brado
Subject: Re: entering tide data
Date: Thu, 29 Jan 2009 12:30:26 -0800 (PST)

d.b. sent me the following instructions:

A bit of regexp magic will do the trick..

fid = fopen("tide.txt");
s = char(fread(fid)).';
fclose(fid);
t = regexp(s,'^\s*(\d+)\+(\d+)\s+([\.\d]+)','tokens','lineanchors');
dte = cellfun(@(x) x(1), t)
tme = cellfun(@(x) x(2), t)
tide = cellfun(@(x) x(3), t)

Thank you for your effort and time, however I'm completely new to
octave/matlab. Is the above a script? how do I use it? Thanks.

Here is a sample of the data: I made a mistake earlier, the date is numbered
by the day (365).

2007022+0030   0.231
2007022+0100   0.238
2007022+0130   0.235
2007022+0200   0.234

-- 
View this message in context: 
http://www.nabble.com/entering-tide-data-tp21733040p21735235.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]