"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 Ansichten (letzte 30 Tage)

Antworten (2)

Walter Roberson
Walter Roberson am 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 am 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!

Translated by