Changes between Version 16 and Version 17 of cypress/Matlab
- Timestamp:
- 10/15/25 13:36:45 (7 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/Matlab
v16 v17 4 4 plotting of functions and data, implementation of algorithms, and creation of user interfaces. 5 5 6 You can run your M atlab codes on Cypress clusters but you can't use GUI(Graphical User Interface) on computing nodes.6 You can run your MATLAB codes on Cypress clusters, but you can't use the GUI(Graphical User Interface) on computing nodes. 7 7 8 8 … … 48 48 49 49 === Running MATLAB interactively with GUI === 50 If you have x-window environment on the local machine, you can forward the MatlabGUI window from Cypress to your local screen.50 If you have an X-Windows environment on the local machine, you can forward the MATLAB GUI window from Cypress to your local screen. 51 51 See [[cypress/SshUsage#TunnelingXWindowsSessionviaSSH | X-window forwarding]]. 52 52 53 1. Log in to Cypress with X-window forwarding.53 1. Log in to Cypress with X-window forwarding. 54 54 {{{ 55 55 ssh -Y userID@cypress.tulane.edu … … 63 63 module load matlab 64 64 }}} 65 4. Run M atlab65 4. Run MATLAB 66 66 {{{ 67 67 matlab & … … 85 85 matlab -nodesktop -nodisplay -nosplash < mymatlabprog.m 86 86 }}} 87 87 or 88 {{{ 89 matlab -nodesktop -nodisplay -nosplash -r "mymatlabprog; exit;" 90 }}} 88 91 89 92 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab] … … 140 143 MATLAB supports multithreaded computation for a number of functions and expressions that are combinations of element-wise functions. 141 144 These functions automatically execute on multiple threads if data size is large enough. 142 Note that on Cypress, in default, MATLAB runs with a single threads, andyou have to explicitly specify the number of threads in your code.145 Note that on Cypress, by default, ~~~MATLAB runs with a single threads~~~, '''MATLAB utilizes the maximum number of cores, regardless of the number requested''', and therefore, you have to explicitly specify the number of threads in your code. 143 146 For example, 144 147 {{{#!matlab