How do I run MATLAB from the mac terminal?
409 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Cristian Sanchez Montesinos
el 3 de Feb. de 2019
Comentada: Marco cazzaniga
el 16 de Feb. de 2023
I am trying to run MATLAB from the mac OS X terminal. I'm using macOS Mojave version 10.14.2, and MATLAB R2018b. What I'm doing is:
- I open the terminal
- Go to /Applications
- pe MATLAB_R2018
However, I get the following:
-bash: MATLAB_R2018b: command not found
Can someone help me with this?
Thanks.
0 comentarios
Respuesta aceptada
Ken Atwell
el 4 de Feb. de 2019
I do this:
open /Applications/MATLAB_R2018b.app/
2 comentarios
Ken Atwell
el 5 de Feb. de 2019
Oh, within the Terminal. You probably want -nodesktop. See:
Más respuestas (2)
Walter Roberson
el 5 de Feb. de 2019
alias matlab="/Applications/MATLAB_R2018b.app/bin/matlab -nojvm -nodesktop"
I put the above in my ~/.bash_profile
3 comentarios
Walter Roberson
el 9 de Feb. de 2019
Yes. If you are using the default bash shell then when you start an interactive session the .bash_profile in your home directory is sourced. The command I show sets up a command named matlab to launch r2018b in terminal mode. It can be invoked by that name from the terminal no matter where you are cd to . It is effectively a shortcut for typing in the right hand side.
Peiwei Liu
el 20 de Oct. de 2021
In terminal on mac, type this:
/Applications/Polyspace/R2019b/bin/matlab; exit;
Please adjust this to your own path. Works!
1 comentario
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!