探す限り見つからないので、Pythonとの連携で行いました。
Anacondaとchromedriverをダウンロードし、必要なモジュールをインストールします。
(Anacondaでなくても問題ありません)。
urlと検索文字を設定します。
clc,clear;
url = 'https://www.google.com/';
word = input('検索ワードを入れてください: ','s');
MATLAB Live Task for Python というタスクがアドインで入れられるので、以下はそこで編集しました。
pythonCode = [
"import time"
"from selenium import webdriver"
"driver = webdriver.Chrome(options=ChromeOptions)"
"driver.implicitly_wait(3)"
"driver.get(url)"
"search = driver.find_element_by_name('q')"
"search.send_keys(word)"
"search.submit()"
"time.sleep(5)"
];
pyrun(pythonCode, "url", url, "word", word);