Borrar filtros
Borrar filtros

function plotting in matlab

1 visualización (últimos 30 días)
Rasmus
Rasmus el 23 de Feb. de 2014
Respondida: Mischa Kim el 23 de Feb. de 2014
Hello! :)
I want to plot this function in a graph, but for some reason it doesn't want to that.
this is the function:
a(x-x0)+b*exp(-power((x-xc),2)/lambda)
I already have a group of data, for x and y, and i need to get this function to follow that plot as close as possible.
how do i plot it into ?

Respuesta aceptada

Mischa Kim
Mischa Kim el 23 de Feb. de 2014
Rasmus, check out:
x = 0:0.1:10;
lambda = 2;
a = 1;
b = 1;
x0 = 1;
xc = 1;
y = a*(x-x0)+b*exp(-((x-xc).^2)/lambda);
plot(x,y)

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots 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