Recent content by Zhamie

  1. Z

    Dynamical System Analysis using Mathematica

    Thank you. I used quite similar way of doing this.
  2. Z

    Dynamical System Analysis using Mathematica

    So next step will be to substitute those values to the matrix written in terms of x and y. Any ideas?
  3. Z

    Dynamical System Analysis using Mathematica

    I understood how to extract NSolve output. For this purpose you need to write soln=NSolve[...], then to access the solution values of this function x /. soln[[1]], y/.soln[[1]] (this corresponds to the 1st solution)
  4. Z

    Dynamical System Analysis using Mathematica

    Hello there, Let me start from the beginning. I have dynamical system described by two autonomous ODEs (eqn1, eqn2). To find equilibrium points I used NSolve[{eqn1 == 0, eqn2 == 0}, {x, y}] which gave me 5 solutions in a form {{x->2, y->0},{...},...}. I also constructed Jacobian matrix using...
Back
Top