how to plot exponential function
75 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nabila Dwita Naura
il 22 Nov 2018
Risposto: Md. Imran Hossain
il 16 Ott 2024
hello! so i am kinda confused with how to change this to matlab code, because i've tried exp*(-1000*|t|) still not working
pls help me! thank you!
x(t)=exp(-1000|t|)
0 Commenti
Risposta accettata
madhan ravi
il 22 Nov 2018
syms t
x=exp(-1000*abs(t))
fplot(x)
5 Commenti
JOHN GIL BILOLO
il 5 Mag 2021
t=linspace(0,30,5000);
x=exp(-2000.*abs(t));
y=fft(x);
xlabel('chito');
ylabel('loko');
plot(t, abs(y),'g--'), title('Amplitude tsamba lang');
plot(t, angle(y),'g--'), title('Exponential kunwari');
grid;
Più risposte (1)
Md. Imran Hossain
il 16 Ott 2024
Implementing exponential function using MATLAB. clear; clc; m=1; c=2; i=linspace(0,.01,5); y=exp(-i); plot(i,y)
0 Commenti
Vedere anche
Categorie
Scopri di più su Calculus 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!