I try this coding but it's say plot error..what wrong with my coding?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Muhammad Harriz Bin Zamri
el 16 de Mayo de 2022
Respondida: Dyuman Joshi
el 16 de Mayo de 2022
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');
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 16 de Mayo de 2022
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!