Version 2020b of the MATLAB compiler and MATLAB Compiler Runtime can be found in /share/apps/MATLAB.
Documentation is available on the MathWorks website at https://www.mathworks.com/help/compiler/
You can setup the the MATLAB compiler environment with the following 2 commands:
LD_PRELOAD="/share/apps/MATLAB/compiler/2020b/bin/glnxa64/glibc-2.17_shim.so"
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/share/apps/MATLAB/MCR/v99/runtime/glnxa64:/share/apps/MATLAB/MCR/v99/bin/glnxa64:/share/apps/MATLAB/MCR/v99/sys/os/glnxa64:/share/apps/MATLAB/MCR/v99/extern/bin/glnxa64
Your MATLAB code can then be compiled with the following command:
/share/apps/MATLAB/compiler/2020b/bin/mcc -mv yourcode.m
The resulting compiled program can be run during an interactive job using the compiler generated “run_.sh” script with the following command:
./run_yourcode.sh /share/apps/MATLAB/MCR/v99