Write a user defined function to implement the following mathematical function :
2 ビュー (過去 30 日間)
古いコメントを表示
Write a user defined function to implement the following mathematical function : please note that x is angle in degrees.
f (x) = cos (x) if 0 < x < 90
f(x)= sin(x) if 90 < x < 180
f(x)=tan(x) otherwise
0 件のコメント
回答 (1 件)
David Hill
2020 年 10 月 21 日
function y = f(x)
if x>0&&x<90
y=cosd(x);
elseif x>90&&x<180
y=sind(x);
else
y=tand(x);
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Mathematics and Optimization についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!