Creating a function in MATLAB
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 2 de Feb. de 2013
Editada: Azzi Abdelmalek
el 2 de Feb. de 2013
f=@(x) x*sin(x)
%or
function y=f(x)
y=x*sin(x)
0 comentarios
Más respuestas (1)
Image Analyst
el 2 de Feb. de 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?
0 comentarios
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!