Info

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

code to find difference between dynamical systems

조회 수: 1 (최근 30일)
Samson
Samson 2019년 7월 25일
마감: MATLAB Answer Bot 2021년 8월 20일
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
Shashwat Bajpai
Shashwat Bajpai 2019년 8월 7일
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 2019년 8월 7일
hello, thank you for this answer. I needed to take the difference over time and space. I have gotten it

답변 (0개)

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by