Why do i keep getting the illegal error us of "end"

12 ビュー (過去 30 日間)
Sierra Bounds
Sierra Bounds 2019 年 2 月 20 日
編集済み: Stephen23 2019 年 2 月 20 日
eaas3.PNG
  1 件のコメント
Stephen23
Stephen23 2019 年 2 月 20 日
編集済み: Stephen23 2019 年 2 月 20 日
'Why do i keep getting the illegal error us of "end"'
Check the spelling of "function".

サインインしてコメントする。

採用された回答

Asad Mirza
Asad Mirza 2019 年 2 月 20 日
For every start of a loop you write in MATLAB you must "end it" with an "end". They come in pairs.
Now it looks like you did properly close your loop but you incorrectly wrote "funcion" instead of "function", that is where you error it actually coming from.
function vari = variance(a)
total = sum(a);
width = length(a);
avg = total/width;
v=0;
for c = 1 : legnth(a)
v = v +(a(c)-avg)^2;
end
vari = v / (width-1);
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWhos についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by