how to solve piece-wise function?
古いコメントを表示
f(x)= {1 if x>=0, 0 if x=0, -1 if x<=0
2 件のコメント
Guillaume
2015 年 11 月 10 日
Note that your function is ill-defined for x == 0, since it passes all three conditions. You should use strict comparison, < instead of <=.
rising falcon
2015 年 11 月 13 日
回答 (1 件)
I'm not sure what you mean by solve. The roots of that function is obviously just 0.
2 件のコメント
rising falcon
2015 年 11 月 10 日
Guillaume
2015 年 11 月 10 日
How to write functions and how to use if statement is covered in the Getting Started tutorial in the doc and in million of other tutorials.
function s = mysignum(x)
if x > 0
s = 1;
elseif x < 0
s = -1;
else
s = 0;
end
end
カテゴリ
ヘルプ センター および File Exchange で Common Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!