Two-dimensional Logistic Model of chaotic mathematics

Source: Internet
Author: User

The logistic chaos model is discussed in the previous section. This section describes the two-dimensional logistic ing. it serves as a link between one dimension and high dimensions. The study of chaos in two dimensional ing helps us to understand and predict the state of a more complex high dimensional dynamic system. Two-dimensional logistic ing based on the construction of one-time coupling and secondary disaster recovery is used to study the path from two-dimensional logistic ing to chaos. The characteristics of its fractal structure and suction basin are analyzed, and different control parameters are selected, two-dimensional ing can go to Chaos Based on Feigenbaum paths and point out a large area in the control parameter space.

The mathematical equation of two-dimensional delayed logistic ing is: x (n + 1) = y (n); y (n + 1) = u * Y (N) * (2.28 (n), u belongs to (0,), and [x, y] belongs)

For related demos, see the discrete point set graphics demo of chaos mathematics.

The code is similar to the Code in the previous section:

// http://www.baike.com/wiki/logistic%E6%A8%A1%E5%9E%8Bclass Logistic2DEquation : public DiscreteEquation{public:    Logistic2DEquation()    {        m_StartX = 0.5f;        m_StartY = m_StartX;        m_ParamA = 2.003f;    }    void IterateValue(float x, float y, float& outX, float& outY) const    {        outX = y;        outY = m_ParamA*y*(1-x);    }    bool IsValidParamA() const {return true;}};

The figure is different from the one in the previous section:

 

Two-dimensional Logistic Model of chaotic mathematics

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.