Creating a function in MATLAB
1 回表示 (過去 30 日間)
古いコメントを表示
Here is my question. I feel like this is an easy task but somehow cannot create a function to do this for me.
Create a function which given a value x, returns a value f(x) according the
following equation:
f(x)=xsin(x).
Thanks for the help!
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 2 月 2 日
編集済み: Azzi Abdelmalek
2013 年 2 月 2 日
f=@(x) x*sin(x)
%or
function y=f(x)
y=x*sin(x)
0 件のコメント
その他の回答 (1 件)
Image Analyst
2013 年 2 月 2 日
Is this homework? Did you look up how to define functions in the help? Do you know that you need to use ".*" between the x and the sin?
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!