data points
| Time Recorded (time1606) | Data (data1606) |
|---|---|
| 22 May 2013 05:00:29 | [4] |
| 21 May 2013 05:00:33 | [5] |
| 20 May 2013 05:00:35 | [4] |
| 19 May 2013 05:00:24 | [4.5] |
| 18 May 2013 05:00:39 | [4.5] |
url = 'http://espn.go.com/mlb/standings';
page = urlread(url);
tokens = regexp( page, 'Tampa Bay[a-z<>="''/ ]+\d+[a-z<>="''/ ]+\d+[a-z<>="''/ ]+\.\d+[a-z<>="''/ ]+([\d+-.]+)', 'tokens', 'once');
if strcmp(tokens{1}, '-')
gb = 0;
else
gb = str2double(tokens{1});
end
updatetrend(gb);
0 comments