Filter löschen
Filter löschen

How to plot a function like this in matlab

2 Ansichten (letzte 30 Tage)
maharaj
maharaj am 23 Feb. 2013
exp(-ax+bx^2) where x ranges from 5-250 in order of 1.

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by