The equation for the voltage v(t) across a capacitor as a function of time is...

4 views (last 30 days)
please see attached file for the question details:

Answers (1)

KSSV
KSSV on 4 Dec 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 Comment
mat lab
mat lab on 4 Dec 2017
Edited: mat lab on 4 Dec 2017
thats the integration of V(t) ? for that integration would i need to differentiate i(t)dx ?

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!