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

 채택된 답변

Geoff Hayes
Geoff Hayes 2020년 4월 24일
Mudassir - remove the single quotes around the variable
x = 'start https://www.google.com/';
system(x);

댓글 수: 1

Mudassir Khalil
Mudassir Khalil 2020년 4월 24일
편집: Mudassir Khalil 2020년 4월 24일
Thanks Geoff, sorry for this much basic question as I'm new in matlab Thanks Again.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Google에 대해 자세히 알아보기

질문:

2020년 4월 24일

편집:

2020년 4월 24일

Community Treasure Hunt

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

Start Hunting!

Translated by