HOW to import data to MATLAB

16 views (last 30 days)
sese
sese on 12 Nov 2012
Hello Guys ....
I have question for you guys today.. so if you ready let's begin.
i have this website and i want to import the temperature for today in my city which is "VIENNA", and save my data ( temperature) to file in my computer.
my sincerely

Accepted Answer

Thomas
Thomas on 12 Nov 2012
try this
syt=urlread('http://weather.yahoo.com/austria/vienna/vienna-551801/');
startvalue=strfind(syt,'day-temp-current temp-f');
temperature=syt(startvalue+26:startvalue+27)
  5 Comments
Jan
Jan on 14 Nov 2012
You are welcome, sese. Please show what you have tried so far to get the Humidity and explain, which problems occurred. It should be possible to modify Thomas' example.
Rainaire Hansford
Rainaire Hansford on 8 Sep 2020
Excuse me guys but I try to use this code and i didnt get any values. Also the website doesn't seem to work. Can this work on google weather?

Sign in to comment.

More Answers (0)

Categories

Find more on Data Import and Analysis 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!