Function definition not supported on cluster, but available in interactive mode

When I try to run the following program
% Test program
for i=1:3600
waitawhile(1)
disp(i)
end
function waitawhile(time)
% wait time seconds
pause(time)
end
in Matlab (2020a) on a cluster in interactive mode (also with the -no-display option) and Matlab online it works perfectly, but when I submit it as a job on a cluster (srun matlab -nodisplay test.m) I get the following error
function waitawhile(time)
Error: Function definition not supported in this context. Create function in code file.
End
Error: Illigal use of reserved keyword 'end'
I am not sure why this error occurs and why Matlab should have a problem with a local function within a script. Is there a specific reason why this code does not work on the same cluster in interactive mode and not when submitted as a job?

4 Kommentare

I would recommend verifying the srun gives you a MATLAB session that is running R2016b or later. It is possible that since srun is a script, that it is invoking a different version of MATLAB.
The version information shows the same version (R2020a [9.8.0.1451342] - 64 bit) for both the interactive and submitted test script.
srun matlab -nodisplay test.m
That would, I think, attempt to execute test as a function and access a field named ".m"
The '. m' does not have much influence on running the code. If I remove the function in the test script and replace waitawhile with pause the code runs just fine. It has more to do the infile subroutine I presume.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Baoning Wu
Baoning Wu am 23 Mai 2023
I encounter the exact same problem. Any solution you found?

Kategorien

Mehr zu Third-Party Cluster Configuration finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2020a

Gefragt:

am 29 Mär. 2021

Beantwortet:

am 23 Mai 2023

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by