Effacer les filtres
Effacer les filtres

Creating a function in MATLAB

2 vues (au cours des 30 derniers jours)
Aaron
Aaron le 2 Fév 2013
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!

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 2 Fév 2013
Modifié(e) : Azzi Abdelmalek le 2 Fév 2013
f=@(x) x*sin(x)
%or
function y=f(x)
y=x*sin(x)

Plus de réponses (1)

Image Analyst
Image Analyst le 2 Fév 2013
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?

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by