Changes between Version 22 and Version 23 of cypress/Matlab


Ignore:
Timestamp:
08/27/2026 04:51:48 PM (8 days ago)
Author:
fuji
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • cypress/Matlab

    v22 v23  
    44plotting of functions and data, implementation of algorithms, and creation of user interfaces.
    55
    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]
     6You can run your MATLAB code on Cypress clusters, but you can't use the GUI(Graphical User Interface) Batch mode.
     7
    108== MATLAB Modules ==
    119{{{
     
    8482Note that your MATLAB session will be killed when the session time exceeds the walltime limit.
    8583
     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
    8688== Running MATLAB in a batch mode ==
    8789You 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.
     
    105107}}}
    106108
    107 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab]
    108109== Compiled Matlab ==
    109110=== Compiling Matlab Scripts using mcc ===
     
    199200This value goes to '''SLURM_JOB_CPUS_PER_NODE''' and you can use it to determine the number of threads used in the code.
    200201
    201 
    202 
    203 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab]
     202See [[cypress/Matlab#CompiledMatlab| here]] for matlab-compiler.
    204203{{{#!bash
    205204#!/bin/bash
     
    240239''!CreateWorker.m'' is a MATLAB code to create workers.
    241240{{{#!matlab
    242 % Parallel Tool Box Test "CreateWorker.m"
     241% Parallel Toolbox Test "CreateWorker.m"
    243242%
    244243if isempty(getenv('SLURM_JOB_CPUS_PER_NODE'))
     
    277276 
    278277
    279 
    280 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab]
     278See [[cypress/Matlab#CompiledMatlab| here]].
    281279
    282280{{{#!bash