plot - Plotting nonlinear Diff equation in Matlab -


here 3 nonlinear diff equation :

nonlinear diff equation

how possible plot equation in matlab.

take @ differential equation solver in matlab, ode45.

f1 = @(t,y)[-y(2)^3 - y(1)^3; y(1)*y(3) - y(2)^3; -y(3) + y(1)^2]; [time,y] = ode45(f1,[0 10],zeros(3,1)) plot(time,y) 

Comments

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -