[sympy] PySDE, Solver for Stochastic Differential Equations

2017-05-04 Thread chu-ching huang
the package is both for symbolic/numeric solver for SDE's and could run within Jupyter notebook environment, https://github.com/cchuang2009/PySDE cch -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving

[sympy] A Calculus course for Informatics engineering class

2017-05-03 Thread chu-ching huang
As title, sympy package had been introduced in these lectures, especially for Multiple-variable functions. If interested, welcome to visit the site: https://github.com/cchuang2009/2016-1/tree/master/calculus cch -- You received this message because you are subscribed to the Google Groups

[sympy] DyLabIPy, a min lecture about doing Math with Computation

2014-08-17 Thread chu-ching huang
Hi all, I'm preparing a new lecture for dynamical systems from math views. It owns the features: a) min Python resources used as possibly b) IPython notebook interfacs c) data Visualization integrated And thanks to Sympy to do much help to this lecture. for example, numerical schemes

[sympy] Re: Sprinting at EuroSciPy?

2012-07-24 Thread chu-ching huang
I will give a post in EuroScipy about Solver for Stochastic Differential Equations which is implemented via Sympy and other. -- You received this message because you are subscribed to the Google Groups sympy group. To view this discussion on the web visit

[sympy] One more GSoC idea

2011-03-23 Thread chu-ching huang
to the idea? Best regards, chu-ching huang cchuang2...@mail.com Math Group, CGE Chang-Gung University, Taiwan -- You received this message because you are subscribed to the Google Groups sympy group. To post to this group, send email to sympy@googlegroups.com. To unsubscribe from this group, send

[sympy] solver for stochastic differential equation

2010-05-19 Thread chu-ching huang
I am starting to write package which can solve stochastic differential equation in Python. Now it owns basic functions which can do symbolic/ numeric calculation and plotting work. Of course, sympy is the core used to implement the symbolic part. If interested, you can find it at the following

[sympy] Re: an error in computing diff for partial differentiation

2010-04-07 Thread chu-ching huang
Hi, I know this problem can be treated correctly as above. The example given here is just to say that using diff has to be more careful since diff(f,x,y).subs([(x, a), (y,b)]) may be not equal to $lim_{(x,y)\to(a,b)} f(x,y)$. Thanks, cch -- You received this message because you are

[sympy] a patch to examples/intermediate/mplot3d.py

2009-12-20 Thread chu-ching huang
Hi all, As title, this is a patch for matplotlib used in Sympy: @@ -17,7 +17,7 @@ try: import pylab as p -import matplotlib.axes3d as p3 +import mpl_toolkits.mplot3d as p3 except ImportError: raise ImportError(Matplotlib is required to use mplot3d.)

[sympy] Axes3D (matplotlib) is back

2009-09-04 Thread chu-ching huang
Hi all, 3d plotiing function is back in matplotlib-0.99. And it is called by: from mpl_toolkits.mplot3d import Axes3D The 3d plotting demo file in sympy examples seems to be modified due to this change. cch --~--~-~--~~~---~--~~ You received this message because

[sympy] Re: a sequence of variables

2009-02-05 Thread chu-ching huang
Just rebuild sympy-git source and test the following: from sympy import * a=DeferredVector('a') b=DeferredVector('b') n=10 A=eye(11) a=Matrix(1,n,lambda i,j: 'a%g' %j) b=Matrix(1,n,lambda i,j: 'b%g' %j) A[0,1:]=a A[1:,0]=b.transpose() A.det() and it shows the right answer: 1 - a0*b0 - a1*b1 -

[sympy] picture shown within sympy-live

2008-12-24 Thread chu-ching huang
Hi, Sympy-live is a good idea for light-weight sympy programming. But is there any schedule for supporting simple python plot functionality? Thanks in advance, cch --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[sympy] Re: sympy 0.6.3 released

2008-11-20 Thread chu-ching huang
I give a lecture about python computing in our campus. To make a mobile environment for students outside the class, we make a mobile linux system which can be installed DVD or USB stick and run on several PC's and laptop's, enen on Asus eeePC (701). This platform can also allows to update