webread.m -- Too many input arguments
이전 댓글 표시
I am using MATLAB 2016B.
I have a webpage which I want to download the data from.
url = 'https://openfigi.com/search#!?search=CUSTOM&pageSize=100&page=1&filters=EXCH_CODE:..cme&simpleSearchString=S%26P500%20EMINI%20OPTN';
data = webread(url);
When i run this I get:
Error using webread (line 116)
Too many input arguments.
When I try
data = urlread(url);
The function clearly works as it's supposed to, however the response does not contain the data of interest.
Please can someone help me return the table data using matlab. thanks
답변 (2개)
Sean de Wolski
2016년 10월 18일
편집: Sean de Wolski
2016년 10월 18일
0 개 추천
What you have for webread works fine for me in R2016b, Win7x64.
My guess is you're shadowing one of the functions that webread is calling.
댓글 수: 1
itsupport
2016년 10월 20일
0 개 추천
댓글 수: 1
stephan bohacek
2017년 1월 18일
I have the exact same problem (same error message). But urlread works fine.
카테고리
도움말 센터 및 File Exchange에서 Web Services에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!