webread.m -- Too many input arguments
2 ビュー (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (2 件)
Sean de Wolski
2016 年 10 月 18 日
編集済み: Sean de Wolski
2016 年 10 月 18 日
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 日
1 件のコメント
stephan bohacek
2017 年 1 月 18 日
I have the exact same problem (same error message). But urlread works fine.
参考
カテゴリ
Help Center および File Exchange で Web Services についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!