Questions tagged [urlread]
33 questions
1
vote
1 answer
Get movie information from imdb link
in my program, user will enter imdb link like this http://www.imdb.com/title/tt0816692/
and I will take only name, year and point information.
How can i do that ?

funky-nd
- 637
- 1
- 9
- 25
1
vote
2 answers
Matlab urlread button click on homepage
I try to read data from the homepage
https://www.apg.at/emwebapgrem/AuctionResults.do
with Matlab.
I already managed to filter the relevant type and date with the command
[str, ~] = urlread(['https://www.apg.at/emwebapgrem/AuctionResults.do?',…

Eva B
- 11
- 2
1
vote
1 answer
MATLAB urlread from live timing website
this is a website with a live timing table:
http://www.apex-timing.com/live-timing/lemans-karting/index.html
Do you guys know whether the Matlab function urlread lets me read this kind of data?
Using
str =…

Sebastian
- 19
- 1
- 5
1
vote
1 answer
Django POST/GET, GET works, POST doesn't from MATLAB (urlread). Both work using django.test.client
I am learning Django so I've set up a very simple form/view/url example
Django Version 1.5.1
MATLAB Version R2012A
forms.py
from django import forms
import json
class json_input(forms.Form):
jsonfield = forms.CharField(max_length=1024)
…
user1676521
1
vote
3 answers
Using Matlab and urlread to read data from https?
I am trying to download a https page using url read:
str=urlread('https://funds.barclaysstockbrokers.co.uk/clients/bsl/search_factsheet_summary.aspx?code=B0XWN14')
Unfortunately, I get an error :
Error downloading URL. Your network connection may be…

Ginger
- 8,320
- 12
- 56
- 99
0
votes
0 answers
Garbled when using urlread in Matlab
When I was using urlread to scrape the website: http://www.trackdota.com, the returen is garbled.
Code:
url = 'http://www.trackdota.com'
urlread(url)
the return is something like:
�Xms�6��_�:�|#��l��+�qҤә�M�n�ǣ�H��
Z�$��}�/"eIuo����…

Leohc92
- 78
- 6
0
votes
0 answers
Error downloading following URL using urlread() function in Matlab
I am trying to download the contents of following…

exAres
- 4,806
- 16
- 53
- 95
0
votes
1 answer
Import table from HTML into Matlab
I am trying to import data from an html webpage into Matlab. I have come across a function "getTableFromWeb". It looks pretty cool. The problem is when I use a browser for example Firefox I can see the data. But when use this function it can't find…

Kasper
- 1
- 1
0
votes
0 answers
My URL Reader Class runs too slowly
Here, i take String url as a parameter. This is imdb link such as MovieURL imitation = new MovieURL("http://www.imdb.com/title/tt3477064/");
And I take name, point and year information. But it runs too slowly. Which method makes it slow. How can I…

funky-nd
- 637
- 1
- 9
- 25
0
votes
0 answers
MATLAB urlread to extract website values
I'm trying to extract price values from a website for a final project. I am to create a GUI that calculates the cost of materials to build a house. I am attempting to use up to date pricing from Home Depots website each time the GUI is run. I am…

Carpenterguy
- 31
- 3
0
votes
1 answer
get data from website not showing up in html mark-up code
I am trying to retrieve data from a website for which the parameters that you need to define does not show up in the url ie.…

Ingrid
- 15
- 8
0
votes
0 answers
matlab url authentication for imread
How can I use the IMREAD function with a URL that requires basic authentication in MATLAB 2014a? (not the old matlab).
It works well for matlab R2013a as described in this…

sid
- 1
0
votes
2 answers
urlread pound sign (#) doesn't work
Trying to read in the pricing lists under pricing information tab:
urlread( ' http://www.cefconnect.com/Details/Summary.aspx?Ticker=KYE#pricing ' )
But in url '#pricing' doesn't help.
Any suggestions?

user3677876
- 15
- 3
0
votes
0 answers
Matlab: urlread and textscan to retrieve html data
This is probably a basic question, but I'm new to MATLAB and have been struggling with it for a while. I'm trying to import data from a website using urlread. I can import the data into a cell but it is in html form and I lose all the table…

user3498384
- 55
- 1
- 7
0
votes
0 answers
matlab urlread not retrieving all content
I was trying to retrieve html as a string by using urlread function. But, urlread does not retrieve the whole html bu just a small part. I compared the html of urls through browser to html through matlab. Matlab retireves about 15% of total.
What I…

user3203275
- 195
- 2
- 11