필터 지우기
필터 지우기

How do I fix the error "Function definitions are not permitted at the prompt or in scripts"?

조회 수: 1 (최근 30일)
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
Jan
Jan 2011년 5월 27일
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?

댓글을 달려면 로그인하십시오.

답변 (2개)

Ben Mitch
Ben Mitch 2011년 5월 27일
Perhaps where you have
function S = timestr(D,precision)
you intended
S = timestr(D,precision)

Jan
Jan 2011년 5월 27일
Is timestr a script file? Then the message is clear: A script file cannot contain function definitions.
See also:

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by