"parse error at '=': usage might be invalid MATLAB syntax." on lines 34 and "parse error at END: usage might be invalid MATLAB syntax" on line 37. Please help! Thanks!

3 views (last 30 days)

Answers (2)

Walter Roberson
Walter Roberson on 25 Feb 2021
You wrote
function = value f(x)
Notice the space between value and f(x)
You probably wanted
function value = f(x)

Cris LaPierre
Cris LaPierre on 25 Feb 2021
You have used the wrong syntax to declare your function. Expected syntax is
function ave = average(x)
ave = sum(x(:))/numel(x);
end
See the function documentation page for more details and examples.

Community Treasure Hunt

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

Start Hunting!