Borrar filtros
Borrar filtros

How to plot a function like this in matlab

2 visualizaciones (últimos 30 días)
maharaj
maharaj el 23 de Feb. de 2013
exp(-ax+bx^2) where x ranges from 5-250 in order of 1.

Respuesta aceptada

Walter Roberson
Walter Roberson el 23 de Feb. de 2013
x = 5 : 250;
y = exp(-a*x + b*x.^2);
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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by