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 次查看(过去 30 天)
显示 更早的评论
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');
1 个评论
David Goodmanson
2022-5-16
Hi Muhammed, they are providing a current and asking you to plot it. No need for diff.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!