MATLAB: Calling Internet Explore from MATLAB and same also for FireFox too

firefoxhtmlieinternet explorer

Does anyone know how Calling Internet Explore from MATLAB and same also for FireFox too? and how reading an .html by them

Best Answer

Try:
myUrl = 'www.mathworks.com/index.html';
ieCmd = ['iexplore ' myUrl];
ffCmd = ['firefox ' myUrl];
system(ieCmd);
system(ffCmd);
Both iexplore.exe and firefox.exe should be on the system PATH variable.