- Open a new terminal and navigating to a directory where you would like to store the new startup script. Then create the new startup script with the touch command, for an example:
I get this error while launching Matlab and therefore it crashes while doing certain processes. Any solution ?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens

0 commentaires
Réponses (1)
Vinay
le 29 Jan 2025
The following steps can be used to include the 'gtk module'
>> touch matlab_start.sh
2. Open the new startup script and copy the following into it:
#!/bin/bash
export GTK_PATH=/usr/lib/x86_64-linux-gnu/gtk-2.0
./<full_path_to_original_matlab_executable>
The <full_path_to_original_matlab_executable> would be replaced with the matlab executable path. If you have installed MATLAB in the default path, that would be matlabroot/bin/matlab.
Note: matlabroot is the name of the folder in which MATLAB is installed.
Refer to the below documentation for more details:
I hope this would resolve the query!
0 commentaires
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!