Using MATLAB as an Alternative Web Browser
Yes, you read it right! MATLAB as a Web Browser.
You can simply browse the internet over it, see the below examples.....
Opening www.facebook.com in MATLAB.
Opening www.mathworks.com in MATLAB.
So How to Browse?
Type the following commands in Command Value or in a Script.
>> address='http://www.mathworks.com'
web(address)
or simply
web ('https://www.facebook.com');
Is an append of "http://" or "https://" is necessary?
No. Try even without them....it will work!
web ('www.facebook.com');
You can simply browse the internet over it, see the below examples.....
Opening www.facebook.com in MATLAB.
Opening www.facebook.com in MATLAB |
Opening www.mathworks.com in MATLAB.
Opening www.mathworks.com in MATLAB. |
Type the following commands in Command Value or in a Script.
>> address='http://www.mathworks.com'
web(address)
or simply
web ('https://www.facebook.com');
Is an append of "http://" or "https://" is necessary?
No. Try even without them....it will work!
web ('www.facebook.com');
0 comments: