error using function code

조회 수: 64 (최근 30일)
Matt Thomas
Matt Thomas 2022년 5월 16일
댓글: Cris LaPierre 2022년 5월 17일
I have an assignment due soon and i can not get matlab to work. I have never used matlab before and this is my first asignment in it. I have to make a program where i input a score fom 0 to 100 and it tells me what the grade is.
the first line of code needs to be
function grade = lettergrade(score)
but every time i try this, i get a error and matlab will not let me proced. I have even tried to copy someones code and it fails. I even copied the example from my book by copy paste and it throws the same error
error: function definition not supported in this context. functions can only be created as local or nested functions
no idea what the heck this even means

답변 (2개)

James Tursa
James Tursa 2022년 5월 16일
편집: James Tursa 2022년 5월 17일
Create a file called lettergrade.m somewhere on the MATLAB path (e.g., in your working directory)
edit lettergrade.m
Copy all of your lettergrade function code into that file and save it.
Then simply call the lettergrade function like you would call any other function. From the command line or from within another file.
The reason what you are currently doing isn't working is because MATLAB thinks you are trying to create a function on the fly at the command line.
Note that if you were trying to create a function called "grade" as your example code shows, you would create a file called grade.m rather than lettergrade.m (but your instructions are to create a function called lettergrade)
  댓글 수: 4
Matt Thomas
Matt Thomas 2022년 5월 17일
ohhh, i didnt know the "edit lettergrade.m" created the m file. I thought it edited the m file i needed to create first haha.
ok, i will try this. thanks
James Tursa
James Tursa 2022년 5월 17일
It does both. If the file already exists then it will edit the file. If the file doesn't exist then it will create it.

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


Voss
Voss 2022년 5월 17일
This error means you cannot define a function on the MATLAB command-line. You need to create an m-file and define the function in there.
For example, if your function should be called lettergrade, you can enter
edit lettergrade
on the command-line (and say yes if MATLAB asks you if you want to create a new m-file).
Then put the code in there, with the first line being:
function grade = lettergrade(score)
After that's done, then you can run the function from the command-line or from other functions (or from scripts, which are also m-files) by doing, say,
my_grade = lettergrade(84);
which should store the value 'B' in the variable my_grade, since an 84 should be a B.
  댓글 수: 4
Matt Thomas
Matt Thomas 2022년 5월 17일
i can do that. thanks for showing me that. Does it cover things like if, elseif, for loops etc?
Cris LaPierre
Cris LaPierre 2022년 5월 17일
See this page on creating functions in file:
Ch 12 of MATLAB Onramp coversthe basics of if statements and for loops.

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

카테고리

Help CenterFile Exchange에서 Debugging and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by