The equation for the voltage v(t) across a capacitor as a function of time is...
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
please see attached file for the question details:
2 Kommentare
Antworten (1)
KSSV
am 4 Dez. 2017
N = 500 ;
t = linspace(0,7,N) ;
i = @(t) 0.3+0.1*exp(-5*t).*sin(25*pi*t) ; % current
i = i(t) ;
plot(t,i) ;
Read about sum, trapz to get the integration.
1 Kommentar
Siehe auch
Kategorien
Mehr zu Numerical Integration and Differentiation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!