필터 지우기
필터 지우기

Print the values of parameters if the sequence is convergent, periodic, chaotic, divergent

조회 수: 1 (최근 30일)
k=1;
alpha=rand(1)+i*rand(1);
beta=rand(1)+i*rand(1);
gamma=rand(1)+i*rand(1);%
s=50000;
Zarray = zeros(1,s);
Zarray(1:k+1)=rand(1,1,k+1)+i*rand(1,1,k+1);
for n=k+1:s-1
Zarray(n+1) =(alpha+(beta*Zarray(n-k)))/(gamma-Zarray(n));
end
Now the sequence
Zarray is generated.
I want to plot alpha, beta and gamma for which Zarray is converged to a fixed point.
I want to plot alpha, beta and gamma for which Zarray is divergent.
I want to plot alpha, beta and gamma for which Zarray is periodic.
I want to plot alpha, beta and gamma for which Zarray is chaotic (none of the element of the sequence is same to other).
Can anyone help me to make the rest of the code? I need help. I am unable to do it.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Gamma Functions에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by