how to access internet web browser
显示 更早的评论
How can I find the method to access certain internet web browser in Matlab workspace?
回答(2 个)
Fangjun Jiang
2024-4-2
1 个投票
Run this in MATLAB Command Window
web('mathworks.com')
Balavignesh
2024-4-2
You could use 'web' function to access internet web pages directly from the MATLAB workspace. The 'web' function opens the specified URL in your system's default web browser or in the MATLAB web browser, depending on the options you choose.
web('http://www.example.com')
Refer to this documentation link on 'web' function for more information: https://www.mathworks.com/help/matlab/ref/web.html
Hope this helps!
Balavignesh
类别
在 帮助中心 和 File Exchange 中查找有关 Web Services 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!