data points
| Time Recorded (time1637) | Data (data1637) |
|---|---|
| 18 Jun 2013 07:00:36 | [0] |
| 17 Jun 2013 07:00:36 | [0] |
| 16 Jun 2013 07:00:35 | [0] |
| 15 Jun 2013 07:00:35 | [0] |
| 14 Jun 2013 07:00:38 | [0] |
url = 'http://espn.go.com/mlb/standings';
page = urlread(url);
tokens = regexp( page, 'St\. Louis[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