How to use if statement in function?

1 回表示 (過去 30 日間)
Roko Serdar
Roko Serdar 2021 年 4 月 9 日
コメント済み: Roko Serdar 2021 年 4 月 9 日
How do I define that my N needs to be >0. I tried if but I get error like
Output argument "prvi" (and maybe others) not assigned during call to "func1".
here is my writen code
function prvi = func1(x, N)
for k=1:N
prvi=(1-(4*x^2)/(pi^2*(2*k-1)^2))
end
end

採用された回答

James Tursa
James Tursa 2021 年 4 月 9 日
編集済み: James Tursa 2021 年 4 月 9 日
Add this code to the top of your function:
if( N <= 0 )
error('N needs to be > 0')
end
That being said, your loop probably doesn't do what you intended since it only assigns prvi based on the last iteration. Also, there are many other checks you can make on x and N to make sure they are the correct type, size, etc.
  2 件のコメント
Cris LaPierre
Cris LaPierre 2021 年 4 月 9 日
You could also look into Function Argument Validation.
Roko Serdar
Roko Serdar 2021 年 4 月 9 日
thank you guys

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by