How to plot a 2nd derivative equation

조회 수: 3 (최근 30일)
Guan-Lin Chen
Guan-Lin Chen 2020년 11월 20일
Hi all,
for equation like this
How to plot the graph with x(t) in y axis and t in x axis?
the code I use is this
syms equ(t) x(t)
Dx = diff(x(t))
D2x = diff(x(t),2)
w = 1
% dt = 1/1000;
% t = 0:dt:1000*dt; % Not needed Here
equ = D2x + (Dx)^3 + x(t)^2 *Dx + x(t) ;
%equ(t) = subs(equ, x, {exp(-1i*w*t)+exp(1i*w*t)}) % Substitute Expression For
figure
fimplicit(equ, [-1 1]) % Use ‘fimplicit’ To Plot ‘equ(t)=0’
grid
and the result is a blenk
How do correctly plot it?
Thank you

답변 (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