I am trying to clear a webpage using a function urlread()in MATLAB, although I ran into a problem that I had not seen before. When i run the code
X = urlread('http://espn.go.com/mens-college-basketball/schedule/_/date/20141114');
I get an error
Error using urlreadwrite (line 92)
The server did not find a resource to match this request.
Error in urlread (line 36)
[s,status] = urlreadwrite(mfilename,catchErrors,url,varargin{:});
When I try to visit the link in my browser ( http://espn.go.com/mens-college-basketball/schedule/_/date/20141114 ), I have no problems accessing the page. Can anyone solve this problem?
source
share