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

18 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 6 de Feb. de 2023
Editada: MathWorks Support Team el 6 de Feb. de 2023
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 comentario
Walter Roberson
Walter Roberson el 26 de En. de 2023
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Desktop en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by