data points
| Time Recorded (time1619) | Data (data1619) |
|---|---|
| 24 Feb 2013 10:30:36 | |
| 23 Feb 2013 10:30:38 | [0.5] |
| 22 Feb 2013 10:30:36 | [0] |
| 21 Feb 2013 10:30:39 | [4] |
| 20 Feb 2013 10:30:38 | [16] |
url = 'http://espn.go.com/mlb/standings';
page = urlread(url);
tokens = regexp( page, 'Kansas City[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