webread not copying all data from website
조회 수: 2(최근 30일)
표시 이전 댓글
I'm trying to copy down all the tennis rankings from the table on this website, then I'll pick and choose the ones I want to use.
MWE:
options = weboptions('RequestMethod', 'get', 'ArrayFormat', 'csv', 'ContentType', 'auto');
atpurl = 'https://www.tennis24.com/rankings/atp-race/';
atpdata = webread(atpurl,options);
Unfortunately atpdata does not include any of the results from the table on the website. It isn't expanding the html tree the results are contained within.
This program actually worked fine for me awhile ago but stopped after a few months of regular use. atpdata used to be a 1x1000000 char after running this but now it's been reduced to a 1x40000 char. Any thoughts?
댓글 수: 0
답변(1개)
Abhishek Gupta
2020년 8월 28일
편집: Abhishek Gupta
2020년 8월 28일
Hi Nathan,
Referring to the following links, which might help you in resolving the issue: -
Regards,
Abhishek
댓글 수: 0
참고 항목
범주
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!