How can I solve this error?

1 view (last 30 days)
function[x,t,C] = GRxx_P8_E1(L,T,N,M,Dm,cond_inicial,cc_izda,cc_dcha)
Error: Function definition are not supported in this context. Functions can only be created as local or nested functions in code
files.

Accepted Answer

the cyclist
the cyclist on 15 Sep 2021
Edited: the cyclist on 15 Sep 2021
When defining a function using that syntax, it has to appear inside a file, for example a text file with the name GRxx_P8_E1.m
Then, you can call the function using the syntax
GRxx_P8_E1(L,T,N,M,Dm,cond_inicial,cc_izda,cc_dcha)
from the command line, or another file.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!