Changes between Version 22 and Version 23 of cypress/Matlab
- Timestamp:
- 08/27/2026 04:51:48 PM (8 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/Matlab
v22 v23 4 4 plotting of functions and data, implementation of algorithms, and creation of user interfaces. 5 5 6 You can run your MATLAB code on Cypress clusters, but you can't use the GUI(Graphical User Interface) on computing nodes. 7 8 9 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab] 6 You can run your MATLAB code on Cypress clusters, but you can't use the GUI(Graphical User Interface) Batch mode. 7 10 8 == MATLAB Modules == 11 9 {{{ … … 84 82 Note that your MATLAB session will be killed when the session time exceeds the walltime limit. 85 83 84 === Other ways to run MATLAB on Cypress with GUI === 85 * [[cypress/RunningMATLABonJupyterNoteBook| Jupyter lab]]. 86 * [[Matlab-Slurm| Submitting Jobs from MATLAB Command Window]]. 87 86 88 == Running MATLAB in a batch mode == 87 89 You can also submit your MATLAB job to the batch nodes (compute nodes) on Cypress. To do so, please first make sure that the MATLAB module has been loaded, and then launch "matlab" with the "-nodesktop -nodisplay -nosplash" option as shown in the sample SLURM job script below. … … 105 107 }}} 106 108 107 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab]108 109 == Compiled Matlab == 109 110 === Compiling Matlab Scripts using mcc === … … 199 200 This value goes to '''SLURM_JOB_CPUS_PER_NODE''' and you can use it to determine the number of threads used in the code. 200 201 201 202 203 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab] 202 See [[cypress/Matlab#CompiledMatlab| here]] for matlab-compiler. 204 203 {{{#!bash 205 204 #!/bin/bash … … 240 239 ''!CreateWorker.m'' is a MATLAB code to create workers. 241 240 {{{#!matlab 242 % Parallel Tool Box Test "CreateWorker.m"241 % Parallel Toolbox Test "CreateWorker.m" 243 242 % 244 243 if isempty(getenv('SLURM_JOB_CPUS_PER_NODE')) … … 277 276 278 277 279 280 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab] 278 See [[cypress/Matlab#CompiledMatlab| here]]. 281 279 282 280 {{{#!bash
