generate function from vectors

Write a fucntion file (name it Hello) fro the fucntion f(x) = x4 √(3x+5)/(x2+1)2.
The input to the fucntion is x and the output is f(x). Write the fucntion such that x can be a vector. Use the
fucntion to calculate.
a. f(x) for x=6.
b. f(x) for x=1,3 5,7,9 and 11
how i can write this ?
what i do is this

2 件のコメント

Muhammad Akmal Rafique
Muhammad Akmal Rafique 2020 年 5 月 14 日
f=@(x) x.*4.*sqrt(3.*x+5)/(x.*2+1)^2;
x1=[6]
x=[1;3;5;7;9;11];
f(x)
f(x1)
darova
darova 2020 年 5 月 14 日
Everything is ok except the dot (element wise operator)

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

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

質問済み:

2020 年 5 月 14 日

コメント済み:

2020 年 5 月 14 日

Community Treasure Hunt

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

Start Hunting!

Translated by