Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
documentation:tools:software:matlab [2018/06/08 12:00] – cicaluga | documentation:tools:software:matlab [2025/03/12 15:04] (Version actuelle) – supprimée ltaulell | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== Matlab ====== | ||
- | ^ Version | ||
- | | R2017b (9.3.0.713579) | ||
- | | | **modulefile** : Matlab/ | ||
- | | R2015b (8.6.0.267246) | ||
- | | | **modulefile** : Matlab/ | ||
- | |||
- | |||
- | * Pour utiliser les modules, consulter [[documentation: | ||
- | |||
- | * L' | ||
- | |||
- | * Pour afficher la liste des toolbox installées, | ||
- | ===== Exemples de scripts de soumission ===== | ||
- | |||
- | <note warning> | ||
- | |||
- | Ce script est donné à titre d' | ||
- | |||
- | </ | ||
- | |||
- | |||
- | <code bash script.matlab> | ||
- | #!/bin/bash | ||
- | ###### Select resources ##### | ||
- | #$ -N nom_job | ||
- | #$ -cwd | ||
- | #$ -V | ||
- | #$ -q matlab | ||
- | ##### For larger memory ##### | ||
- | ###$ -q matlabbig | ||
- | |||
- | # config env | ||
- | source / | ||
- | module load Matlab/ | ||
- | |||
- | ##### Change to current working directory ##### | ||
- | WORKDIR=${SGE_O_WORKDIR} | ||
- | |||
- | cd ${WORKDIR} | ||
- | |||
- | ##### Execute Program #### | ||
- | matlab -nodisplay -nodesktop -nojvm -nosplash < program_matlab.m | ||
- | |||
- | # | ||
- | </ | ||
- | |||
- | Pour soumettre il faut lancer : | ||
- | <code bash> | ||
- | qsub script.matlab | ||
- | </ |