Hi,
I need to import some FX rates from the following website:
The table is located within this webpage and gets updated daily.
Does anyone know how to code the import of the whole table from this website into Matlab into my workspace?
Thanks

댓글 수: 3

dpb
dpb 2014년 4월 29일
Why don't you use the RSS or DDP feed supplied instead?
Matthew
Matthew 2014년 4월 29일
Sorry but I'm confused by your reply.
Can you explain your suggestion please?
dpb
dpb 2014년 4월 29일
Poke around the links on the Fed site a little and explore their setup explicitly for distributing data instead of just trying to rip the web page. There's an "RSS" button at the top of the page you've linked to and more on data if follow the links...

댓글을 달려면 로그인하십시오.

 채택된 답변

Friedrich
Friedrich 2014년 4월 29일
편집: Friedrich 2014년 4월 29일

0 개 추천

Hi,
using urlread should do it. Pretty rough code but it gets it done:
html= urlread('http://www.federalreserve.gov/releases/h10/hist/dat00_eu.htm');
txt = regexprep(html,'<[^>]*>','');
starts_at = strfind(txt,'Rate');
ends_at = strfind(txt,'Last update:');
txt = txt(starts_at(end)+4:ends_at-1);
tmp = textscan(txt,'%s','delimiter','\n');
idx=cellfun(@isempty,tmp{1});
tmp = strtrim(tmp{1}(~idx));
date = tmp(1:2:end);
value = tmp(2:2:end);
When doing a small check it looks good:
uitable('data',[date,value])

댓글 수: 1

Matthew
Matthew 2014년 4월 29일
Hi Friedrich,
That's some really nice code.
Thank you for your help.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Language Support에 대해 자세히 알아보기

질문:

2014년 4월 29일

댓글:

dpb
2014년 4월 29일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by