How to insert function in matlab

11 visualizaciones (últimos 30 días)
Rachel Barbera
Rachel Barbera el 22 de En. de 2018
Respondida: Star Strider el 22 de En. de 2018
How can I insert these functions in matlab?
f1= 3 cos (x+2theta) f2= 3 exp(-3x/pi)
x vary from 0 to 2pi

Respuestas (1)

Star Strider
Star Strider el 22 de En. de 2018
If you want to evaluate them as statements:
theta = pi/2; % Choose A Value
x = linspace(0, 2*pi, 50);
f1 = 3*cos(x+2*theta)
f2 = 3*exp(-3*x/pi)
If you want to define them as functions themselves, define them as Anonymous Functions (link) as:
f1 = @(x,theta) 3*cos(x+2*theta)
f2 = @(x) 3*exp(-3*x/pi)
then call them as you would any other function.
For ‘f1’, the easiest way to evaluate it with multiple (vector) values for ‘x’ and ‘theta’ is to use the results of the meshgrid (link) function.

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by