Equation for a growing and decaying exponential
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Abhishek sadasivan
il 15 Apr 2015
Commentato: Star Strider
il 15 Apr 2015
I like know whether any single equation is there for a growing and decaying exponential .i.e from minus infinity to zero it has to grow up to one (at zero one) and from zero to + infinity it has to decay.(All most look like a triangle wave).whether any equation will do this or not . Thanks in advance .
0 Commenti
Risposta accettata
Star Strider
il 15 Apr 2015
You can easily create your own. Here is an anonymous function that works:
x = [-10:0.1:10];
k = 2.0;
f = @(x,k) exp(-abs(k*x));
figure(1)
plot(x, f(x,k))
grid
4 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!