I want to call google chrome brower from matlab using start command.

Currently I'm making a program to automatically open multiple urls in matlab.
Currently I'm using system('start https://www.google.com/ ') to execute . It works fine but when I store that as a character in a varable then due to quotation marks ' ' ,this doesn't work
system('x') Thanks in advance

 Accepted Answer

Mudassir - remove the single quotes around the variable
x = 'start https://www.google.com/';
system(x);

1 Comment

Thanks Geoff, sorry for this much basic question as I'm new in matlab Thanks Again.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!