代码搜索:attractor

找到约 356 项符合「attractor」的源代码

代码结果 356
www.eeworm.com/read/463474/7180234

m attractor.m

function attractor(action) % %Attractor - grafical interface for 2D attractors plotting % % Click "Start" button in order to begin the simulation. % You can stop the simulation at any time by p
www.eeworm.com/read/472548/6869877

m attractor.m

function attractor(action) % %Attractor - grafical interface for 2D attractors plotting % % Click "Start" button in order to begin the simulation. % You can stop the simulation at any time by p
www.eeworm.com/read/294077/8254986

m attractor.m

function attractor(action) % %Attractor - grafical interface for 2D attractors plotting % % Click "Start" button in order to begin the simulation. % You can stop the simulation at any time by p
www.eeworm.com/read/231007/14261454

m henon_attractor.m

clear; close all; a=1.4;b=0.3; xn=0;yn=0; for i=1:200 xn1=1-a*(xn^2)+yn; yn1=b*xn; xn=xn1; yn=yn1; end for i=1:10000 xn1=1-a*(xn^2)+yn; yn1=b*xn; xn=xn1;
www.eeworm.com/read/231007/14261466

asv henon_attractor.asv

clear; close all; a=1.45;b=0.3; xn1=0;yn1=0; for i=1:200 xn=1-a*xn1^2+yn1; yn=b*xn1; xn1=xn;yn1=yn; end for i=1:10000 xn=1-a*xn1^2+yn1; yn=b*xn1; xn1=xn;yn1=yn;
www.eeworm.com/read/212539/15154319

m chen_attractor.m

function dy=chen_attractor(t,y) dy=zeros(3,1); dy(1)=35*(-y(1)+y(2)); dy(2)=-7*y(1)+28*y(2)-y(1)*y(3); dy(3)=y(1)*y(2)-3*y(3);
www.eeworm.com/read/292991/8319107

txt lorenz attractor.txt

'Program WOLFFLOW.BAS calculates the spectrum of LEs for the Lorenz attractor 'Ported from Wolf's Fortran code 'by J. C. Sprott
www.eeworm.com/read/492937/6414389

m gui_view_attractor.m

function gui_view_attractor % Draw Attractor % last modified 29.02.04 global ATTRACTOR GSD_GLOBALS f=[]; switch length(ATTRACTOR.data(1,:)) case 1 f=figure('color',[1 1 1],'number
www.eeworm.com/read/492937/6414408

m gui_create_attractor.m

function gui_create_attractor % Creating attractor % last modified 16.12.04 global TS ATTRACTOR GSD_GLOBALS str=TS.name; [selection,ok] = listdlg('PromptString','Select data :',...