Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

time reversal plot in lorenz system

조회 수: 1 (최근 30일)
shiv gaur
shiv gaur 2022년 2월 26일
마감: Rik 2022년 2월 26일
sigma = 10;beta = 8/3;rho = 28;f = @(t,a) [-sigma*a(1) + sigma*a(2); rho*a(1) - a(2) - a(1)*a(3); -beta*a(3) + a(1)*a(2)];[t,a] = ode45(f,[100 1],[1 1 1]); plot3(a(:,1),a(:,2),a(:,3))
set(gca,'XDir','reverse')
if we take time from 100 to 1 final postion be intial position
so you are req to plot the same

답변 (0개)

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by