Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

code to find difference between dynamical systems

1 Ansicht (letzte 30 Tage)
Samson
Samson am 25 Jul. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
how do i write the code to find the difference of two dynamical equation please. For instance i need to find the change or delta between x (1) and x (4) see my equation below
function dx = attractor (x, a, b, c, sigma, beta, rho, g)
dx = [
- (x (2) + x (3));
x (1) + a * x (2);
b + x (3) * (x (1) -c);
sigma * (x (5) - x (4)) - g * (x (4) -x (1));
x (4) * (rho-x (6)) - x (5);
x (4) * x (5) -beta * x (6);
end
  2 Kommentare
Shashwat Bajpai
Shashwat Bajpai am 7 Aug. 2019
Do you wanto find the difference between x(1) and x(4) or dx(1) and dx(4) in either of the cases a simple:
del_x=abs(dx(1)-dx(4));
should do the trick.
Please elaborate on your problem.
Samson
Samson am 7 Aug. 2019
hello, thank you for this answer. I needed to take the difference over time and space. I have gotten it

Antworten (0)

Diese Frage ist geschlossen.

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by