Using Matlab to link to a web link and print a text file
Show older comments
I have a buch of web links (60 or so). Here is an example of one: http://www.ndbc.noaa.gov/station_page.php?station=44009
Each link contains buoy data.
What I do now is hit ctrl+a and then select all the data on the webpage. Then I paste it into a notepad file.
I do the same thing for a bunch of these specific ocean buoys and paste all the information into ONE notepad file.
CAN Matlab do this for me?
In other words, can I have matlab run a script, (I input all the buoy links that i want in matlab itself), matlab automatically clicks on the link and prints all contents of that link into one large notepad file?
-Mike
Accepted Answer
More Answers (1)
Jan
on 10 Apr 2014
This is working fine for me:
str = urlread('http://www.ndbc.noaa.gov/station_page.php?station=44009')
Perhaps your firewall blocks Matlab?
Categories
Find more on Downloads in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!