Azzera filtri
Azzera filtri

How to plot a function like this in matlab

2 visualizzazioni (ultimi 30 giorni)
exp(-ax+bx^2) where x ranges from 5-250 in order of 1.

Risposta accettata

Walter Roberson
Walter Roberson il 23 Feb 2013
x = 5 : 250;
y = exp(-a*x + b*x.^2);
plot(x, y)

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by