How do I fix the error "Function definitions are not permitted at the prompt or in scripts"?
Ältere Kommentare anzeigen
I get an error when I type this:
function S = timestr(D,precision)
Here is the error:
Error: Function definitions are not permitted at the prompt or in scripts.
What does it mean?
1 Kommentar
Jan
am 27 Mai 2011
After you've edited the text, your question is clearer. And you type this in the command line? Do you want to create the function or do you have a file called "timestr.m" already?
Antworten (2)
Ben Mitch
am 27 Mai 2011
Perhaps where you have
function S = timestr(D,precision)
you intended
S = timestr(D,precision)
1 Kommentar
Fangjun Jiang
am 27 Mai 2011
No. More likely is the case that Jan described.
Jan
am 27 Mai 2011
2 Stimmen
Is timestr a script file? Then the message is clear: A script file cannot contain function definitions.
See also:
1 Kommentar
Fangjun Jiang
am 27 Mai 2011
Aha, those posts have some use after all!
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!