필터 지우기
필터 지우기

Error: Function definitions are not permitted in this context.

조회 수: 26 (최근 30일)
Nabin SUNAM
Nabin SUNAM 2015년 1월 22일
편집: Walter Roberson 2021년 5월 17일
This is my function
function [ area ] = calcarea(rad )
area = pi*rad.^2
end
When I try to run it, following message shows up, "The selected section cannot be evaluated because it contains an invalid statement
Also, the command window says "Error: Function definitions are not permitted in this context"
What am I doing wrong???
  댓글 수: 1
Nabin SUNAM
Nabin SUNAM 2015년 1월 23일
It worked after I saved the file with the same filename as my function, i.e my filename was not calcarea.m before, once I renamed the filename as calcarea.m, it started functioning. I had to call the function in the command window though.

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

채택된 답변

Image Analyst
Image Analyst 2015년 1월 23일
You probably have that function below a script in your m-file. You can't mix a script and a function in the same file. You can have two functions though. So if your file is called test.m, you could have all this in the single file:
function test()
area = calcarea(10)
end
function area = calcarea(rad)
area = pi*rad.^2;
end
Or you could have them in two separate files:
A script in test.m:
area = calcarea(10)
A function in calcarea.m:
function area = calcarea(rad)
area = pi*rad.^2;
end
  댓글 수: 5
Image Analyst
Image Analyst 2018년 3월 6일
Attach your m-file(s) in a new question (not here in Nabin's question).
Walter Roberson
Walter Roberson 2018년 3월 6일
Sanjiv Kumar what happened when you followed the instructions I gave in your Question to install the contents of the .zip I provided for you?

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

추가 답변 (5개)

Star Strider
Star Strider 2015년 1월 22일
You have to put functions such as yours in their own separate .m-files. In your situation, you would save it as: calcarea.m, and to run it from your main script, you would call it as:
area = calcarea(rad)
  댓글 수: 2
Nabin SUNAM
Nabin SUNAM 2015년 1월 23일
Yes, my problem was I saved the file with different filename. It started working when I renamed the file. Thanks for the quick reply.

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


bahadir safak
bahadir safak 2016년 12월 17일
편집: Walter Roberson 2018년 3월 6일
sigma=1;
thresh=1000;
disp=1;
radius=1
im=imread('11.jpg');
function [cim, r, c] = harris(im, sigma, thresh, radius, disp)
error(nargchk(2,5,nargin));
dx = [-1 0 1; -1 0 1; -1 0 1]; % Derivative masks
dy = dx';
Ix = conv2(im, dx, 'same'); % Image derivatives
Iy = conv2(im, dy, 'same');
??? Error: File: harris1.m Line: 45 Column: 1
Function definitions are not permitted in this context.
>>
???
  댓글 수: 7
Stephen23
Stephen23 2017년 5월 4일
편집: Stephen23 2017년 5월 4일
@Mohammedashraf Shaikh: your code is badly aligned, and this makes hiding the errors easy. Once I correctly aligned your code and put each operation on its own line, then the (first) mistake is obvious, and occurs in the first five lines of code:
function[d] = hcompare_EMD(h1,h2)
d = sum(abs(cumsum(h1) - cumsum(h2)));
end
img = imread('C:\Users\Hp\Desktop\col\001.jpg');
function[h] = histImage(img)
...
You call img = ... outside of any function.
It is also possible that your first function definition occurs after some lines of code in a script. Depending on MATLAB version, this will also cause an error. See the other answers for more info on this.
Summary: Learn to align your code consistently (use the MATLAB defaults), and do not put multiple operators onto one line (especially the end for functions!). You can automatically align the code in the MATLAB Editor: select all code, then press ctrl+i.
Image Analyst
Image Analyst 2017년 5월 4일
And learn to format your posts by watching this tutorial Click here

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


Rwigema james
Rwigema james 2017년 7월 7일
편집: Image Analyst 2017년 7월 7일
function Iout = readAndPreprocessImage(filename)
I=imread(filename);
if ismatrix(I)
I = cat(3,I,I,I);
end
Iout = imresize(I,[227 227]);
end
Why am I getting this error?????
Function definitions are not permitted in this context.
  댓글 수: 2
Image Analyst
Image Analyst 2017년 7월 7일
You're putting the function definition in a place where it does not belong, such as below a script in release R2016a and earlier, or elsewhere.
Abbas Khreis
Abbas Khreis 2021년 5월 16일
i have 2016a version and the error Function definitions are not permitted in this con
plz help me

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


Elena MEZZAPESA
Elena MEZZAPESA 2017년 11월 16일
Hello, Did you solve the issues to this problem in the end? As of 2017 I still get this error ?! I am trying to understand if it is because I am using a trial version of the software. Best regards,
Elena
  댓글 수: 1
Image Analyst
Image Analyst 2017년 11월 16일
It was masked as being solved. The trial version is no different than a full version other than being time-limited to 30 days. We'd have to see your code to figure out what's going wrong with your program.

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


Frieder Wittmann
Frieder Wittmann 2018년 5월 27일
This is one of the main disadvantages of MATLAB notebooks over Jupyter (python) notebooks. If I can't define functions in the middle of a script, the notebook becomes hard to read.
  댓글 수: 6
Walter Roberson
Walter Roberson 2021년 5월 17일
MATLAB is not Jupityr.
Frieder Wittmann
Frieder Wittmann 2021년 5월 17일
편집: Frieder Wittmann 2021년 5월 17일
It isn't, it's one of the most common competitors.

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

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by