"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!

Answers (2)

You wrote
function = value f(x)
Notice the space between value and f(x)
You probably wanted
function value = f(x)
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.

Asked:

on 25 Feb 2021

Answered:

on 25 Feb 2021

Community Treasure Hunt

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

Start Hunting!