2. If the current in 3 mF capacitor is i(t) = e ^ t * sin 3t. Plot a graph of the current vs time. Is it true this coding for this question?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
clear;clc;
t=0:10;
f=exp(t).*sin(3*t);
diff (f)
c=0.003;
I=c*diff(f);
figure;
plot(1:10,I);
grid;
xlabel('time');
ylabel('current');
title('current vs time');
2 Commenti
David Goodmanson
il 16 Mag 2022
Hi Muhammed, they are providing a current and asking you to plot it. No need for diff.
Walter Roberson
il 16 Dic 2024
would you please help me to my project is related to this question.
Risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!