[julia-users] Re: ComplexPhasePortrait

2016-06-20 Thread Henri Girard
Solved : Setting ENV to python3 works Le samedi 18 juin 2016 08:52:03 UTC+2, Henri Girard a écrit : > > HI, > I would like to use complexphaseportrait but I can't find any examples, > somebody can guide me to these ? > Regards > HG >

[julia-users] Re: ComplexPhasePortrait

2016-06-20 Thread Henri Girard
I does works if I uncomment @pyimport scipy Le samedi 18 juin 2016 08:52:03 UTC+2, Henri Girard a écrit : > > HI, > I would like to use complexphaseportrait but I can't find any examples, > somebody can guide me to these ? > Regards > HG >

[julia-users] Re: ComplexPhasePortrait

2016-06-20 Thread Henri Girard
julia> using PyPlot julia> using PyCall julia> @pyimport scipy.integrate as integrate ERROR: PyError (:PyImport_ImportModule) ImportError('No module named scipy.integrate',) [inlined code] from /home/pi/.julia/v0.4/PyCall/src/exception.jl:81 in pyimport at

[julia-users] Re: ComplexPhasePortrait

2016-06-20 Thread Henri Girard
I saw your python version so I might be able to translate my RLC and phase portrait,here it is what I am trying to do : %matplotlib inline import numpy as np import matplotlib.pyplot as plt from scipy.integrate import odeint def f(y,t): if t<25: return [y[1],-8*y[0]+0.1*y[1]]

[julia-users] Re: ComplexPhasePortrait

2016-06-20 Thread Henri Girard
I forget : I tried it in a console and it works but in ijulia I have several problems with pycall, I will try to correct them. Le samedi 18 juin 2016 08:52:03 UTC+2, Henri Girard a écrit : > > HI, > I would like to use complexphaseportrait but I can't find any examples, > somebody can guide me

[julia-users] Re: ComplexPhasePortrait

2016-06-20 Thread Henri Girard
Exactly what I am looking for :) Thanks Il anybody has others examples, i would be very pleased to hear about. Regards HG Le samedi 18 juin 2016 08:52:03 UTC+2, Henri Girard a écrit : > > HI, > I would like to use complexphaseportrait but I can't find any examples, > somebody can guide me to

Re: [julia-users] Re: ComplexPhasePortrait

2016-06-19 Thread El suisse
I write a small script for a Nonlinear systems course which calculate a phase portrait and the trayectories whith initial condition set with mouse: the dependencies are: PyPlot, scipy in your system(I use Conda.jl for install it) https://gist.github.com/elsuizo/0c32a6331935938d8ce1974804426162

[julia-users] Re: ComplexPhasePortrait

2016-06-19 Thread Henri Girard
Yes. I make phase portrait with python/jupyter and I want to try to make them with julia, so I am wandering if this package is usefull to do them Le samedi 18 juin 2016 08:52:03 UTC+2, Henri Girard a écrit : > > HI, > I would like to use complexphaseportrait but I can't find any examples, >