How do I create a desktop shortcut to start MATLAB with command-line options in MacOS?

I need to run MATLAB with the command-line option "-cefdisablegpu" on my MacBook. For example, for MATLAB R2022b I run the following commands from Terminal:
cd /Applications/MATLAB_R2022b.app/bin/
./matlab -cefdisablegpu
Is there a way to create a desktop shortcut so that MATLAB starts with this flag automatically when I double-click?

 채택된 답변

To create a desktop shortcut such that MATLAB R20XXx runs with a startup option like "-cefdisablegpu", please follow the steps below. 
  • Open Terminal in your MacBook. 
  • Type the following commands in Terminal:
cd ~/Desktop
touch matlab_new.command
  • Right click the new icon created on the desktop --> Open With --> TextEdit
#!/bin/bash
% chmod u+x /Users/$USER/Desktop/matlab_new.command
cd /Applications/MATLAB_R20XXx.app/bin/
./matlab -cefdisablegpu
chmod u+x /Users/$USER/Desktop/matlab_new.command
  • At this point, you should be able to double-click the created icon on the desktop to start MATLAB with the specified flag. 
  • (Optional) To add a custom icon image, follow the steps in the following Apple discussions thread: https://discussions.apple.com/thread/7720713

댓글 수: 1

Instead of
chmod u+x /Users/username/Desktop/matlab_new.command
with the necessity to replace "username" with your own username, you could instead do
chmod u+x ~/Desktop/matlab_new.command
The ~ in context means "the home directory of the executing account".
The instructions already used ~ in the cd ~/Desktop step so there is no reason to avoid using it.

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

추가 답변 (0개)

카테고리

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

제품

릴리스

R2022b

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by