problema instalacion matlab aplicacion

조회 수: 10 (최근 30일)
Maria Paula
Maria Paula 2024년 3월 8일
답변: Naren 2024년 4월 10일
Hola!
cuando instalo el programa hago todo el proceso normal y todo sale bien y se termina la instalacion y le doy al boton close, pero cuando voy a buscar la aplicacion no aparece instalada en el computador
la instalcion que hago cuenta con licencia y no presenta problema

답변 (1개)

Naren
Naren 2024년 4월 10일
Hello Maria,
I understand you are unable to locate MATLAB application after installing and configuring it.
By default the MATLAB installer will create a symbolic link in /usr/local/bin/. This means you should be able to invoke MATLAB by typing “matlab” the command prompt.
If you see an error saying that the command “matlab” was not found, you can launch MATLAB from the MATLAB installation directory. By default this is located here:
/usr/local/MATLAB/R20XXx/bin/matlab
For example, to launch MATLAB R20XXx first navigate to the bin directory inside the MATLAB installation directory:
cd /usr/local/MATLAB/R20XXx/bin/
Then run MATLAB:
./matlab
You can create a symbolic link for MATLAB in /usr/local/bin/ so you can run MATLAB from anywhere. To do so, start by moving into /usr/local/bin:
cd /usr/local/bin
Then create the link with the ln -s command:
ln -s /usr/local/MATLAB/R20XXx/bin/matlab matlab
This will allow you to run MATLAB from anywhere on your system without needing to first navigate to the MATLAB installation directory.
If you are on a Linux distribution that can use Desktop shortcuts, then please consult your distribution's instructions for creating a shortcut.
I hope this helps.
Regards,
Naren

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by