필터 지우기
필터 지우기

Is it my equation wrong? Cause I get a weird graph for this equation.

조회 수: 1 (최근 30일)
clear; clc;
syms t;
f=exp(-2*t)*tanh(4*t);
c=0.000009;
I=c*diff(f);
figure(1); fplot(I); grid; xlabel('time'); ylabel('current'); title('current vs time');

채택된 답변

Voss
Voss 2022년 6월 2일
If the current is given by that function of time i(t), and you should plot the current vs time, then there is no need to do c*diff(f) (not for part A anyway).
Also, specify a time interval in fplot that starts at 0.
syms t; I=exp(-2*t)*tanh(4*t); %c=0.000009; I=c*diff(f);
figure(1); fplot(I,[0 5]); grid; xlabel('time'); ylabel('current'); title('current vs time');

추가 답변 (2개)

Sam Chak
Sam Chak 2022년 6월 2일
Missing dot.
t = 0:0.01:5;
x = exp(-2*t).*tanh(4*t);
plot(t, x, 'linewidth', 1.5)
xlabel('t')
ylabel('i(t)')
grid on

Image Analyst
Image Analyst 2022년 6월 2일
You may need to specify a time vector rather than use syms. Like
t = linspace(0, 5, 500);
f=exp(-2*t).*tanh(4*t);
c=0.000009;
I=c*diff(f);
figure(1);
plot(t(2:end), I, 'b-', 'LineWidth', 2);
grid;
xlabel('time');
ylabel('current');
title('current vs time');

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by