I try this coding but it's say plot error..what wrong with my coding?

1 次查看(过去 30 天)
clear; clc;
syms t; f=exp(t)*sin(3*t); diff (f) c=0.003; I=c*diff(f);
figure; plot(t,I); grid; xlabel('time'); ylabel('current'); title('current vs time');

采纳的回答

Dyuman Joshi
Dyuman Joshi 2022-5-16
Use fplot to plot symbolic expressions
syms t
f=exp(t)*sin(3*t);
c=0.003; I=c*diff(f);
figure;
fplot(I);
grid;
xlabel('time'); ylabel('current'); title('current vs time');

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by