Re: [sympy] Solution of small system of equations grows past manageability

2016-06-11 Thread Jason Moore
(the blue rectangle) in relation > to its "normal" position by a rotation about an angle of phi and a > translation of x and y. > > > > On Saturday, June 11, 2016 at 5:40:26 PM UTC+2, Jason Moore wrote: >> >> Where are phi, x, y on the diagram? >

Re: [sympy] Solution of small system of equations grows past manageability

2016-06-11 Thread Jason Moore
the matrices. Do A and C also describe >>> rotations. Please give the actual physics problem as well as the resulting >>> math. >>> >>> On Sat, Jun 11, 2016 at 6:37 AM, <janosc...@gmail.com> wrote: >>> >>>> My description was a littl

Re: [sympy] Solution of small system of equations grows past manageability

2016-06-09 Thread Jason Moore
Can you please share the code so we can see what you are doing? Jason moorepants.info +01 530-601-9791 On Wed, Jun 8, 2016 at 11:58 PM, wrote: > I am trying to solve a system of equations with sympy that arises from a > constraint of the form: > > (A x B) x C = D >

Re: [sympy] Derivative without Simplification

2016-06-08 Thread Jason Moore
You may also be interested in PyDy which generates optimized C code from symbolic equations of motion. It uses cse under the hood for some of the optimizations. PyDy directly works with the EoMs that are formed from sympy.physics.mechanics. Jason moorepants.info +01 530-601-9791 On Tue, Jun 7,

Re: [sympy] physics/mechanics questions

2016-05-31 Thread Jason Moore
matrix) 5. differentiated non-holonomic constraints (linear in the derivatives of the dependent speeds, this is non-essential but allows you to integrate the dependent speeds) Jason moorepants.info +01 530-601-9791 On Tue, May 31, 2016 at 3:09 PM, Jason Moore <moorepa...@gmail.com>

Re: [sympy] physics/mechanics questions

2016-05-31 Thread Jason Moore
These descriptions reflect the differences in what Langrange's and Kane's method produces. Lagrange's method produces a kinematical equation (linear in q'), a dynamical equation (linear in q''), and a constraint equation that includes Langrange multipliers (if there are constraints). The m_c,

Re: [sympy] how to let ccode to print sympy.I as 1i, the c++ 14 style

2016-05-13 Thread Jason Moore
You can subclass the CCodePrinter and change the method for sympy.I to print as you like. Examples are here: http://docs.sympy.org/latest/modules/printing.html Jason moorepants.info +01 530-601-9791 On Thu, May 12, 2016 at 8:01 PM, chaowen guo wrote: > Hi: > > The output

Re: [sympy] Modelica Compiler with Sympy Model Output

2016-04-26 Thread Jason Moore
ing from a Modelica model to a bode plot via > sympy on the spring notebook. > > For code generation I do plan to just use my AST and jinja2. Sympy is just > for the symbolic math. > > -James > > > > On Tuesday, April 26, 2016 at 6:22:27 PM UTC-4, Jason Moore

Re: [sympy] Re: Contributing to SymPy Paper

2016-04-20 Thread Jason Moore
Can you explain the graphs you attached. What do all the labels mean? Why would lambdify by faster than ufuncify? Jason moorepants.info +01 530-601-9791 On Wed, Apr 20, 2016 at 1:42 PM, Jason Moore <moorepa...@gmail.com> wrote: > This sounds great. Note that we have recently merged

Re: [sympy] Re: Contributing to SymPy Paper

2016-04-20 Thread Jason Moore
This sounds great. Note that we have recently merged some code that uses llvm to automatically JIT sympy expressions. Check out the master branch and search for the relevant pull requests. Maybe there is some overlap with your project. Jason moorepants.info +01 530-601-9791 On Wed, Apr 20, 2016

Re: [sympy] Re: New contributors

2016-04-11 Thread Jason Moore
. These are generally bigger project ideas, but you may be able to find some portions that you could implement in the time you have. Jason moorepants.info +01 530-601-9791 On Mon, Apr 11, 2016 at 8:24 AM, Jason Moore <moorepa...@gmail.com> wrote: > If there is are geometric entities that are not im

Re: [sympy] Re: New contributors

2016-04-11 Thread Jason Moore
If there is are geometric entities that are not implemented in the geometry package, I'm sure that they would be welcome additions. Jason moorepants.info +01 530-601-9791 On Sun, Apr 10, 2016 at 11:31 PM, Christina Zografou < christinazograf...@gmail.com> wrote: > What about making a class for

Re: [sympy] Ideas Page

2016-04-10 Thread Jason Moore
Sounds good, go for it! If you can organize or link to the scattered ideas on the rest of the wiki, all the better. Jason moorepants.info +01 530-601-9791 On Sun, Apr 10, 2016 at 5:14 PM, James Milam wrote: > Hi all, > > I was looking through the wiki for an ideas page

[sympy] Any way to factor a quadratic

2016-04-06 Thread Jason Moore
Say I have an expression that I know is quadratic in u1, u2, u3: expr = k00*u1**2 + k01*u1*u2 + k02*u1*u3 + k10*u1*u2 + k11*u2**2 + k12*u2*u3 + k20*u1*u3 + k21*u2*u3 + k22*u3**2 Is there a simple way to transform this into: expr = u^T * K * u Where u = [u1, u2, u3]^T and K is a 3 x 3 matrix?

Re: [sympy] Unicode symbol as variable

2016-04-03 Thread Jason Moore
Python 2 does not support unicode variable names: http://stackoverflow.com/questions/2649544/unicode-identifiers-in-python Can you paste the code you are trying to execute so we can see what you are trying to do? Jason moorepants.info +01 530-601-9791 On Sun, Apr 3, 2016 at 6:05 PM, Diego

Re: [sympy] Re: Backwards incompatible changes and version numbers

2016-04-01 Thread Jason Moore
If I set a deprecation now in 1.1dev then it the warning would operate in version 1.1.X and be removed for the 1.2 release. As you said. But, most software packages seem to more-or-less let the first value of the version number indicate that there are backwards incompatible changes. So code

[sympy] Re: Backwards incompatible changes and version numbers

2016-03-31 Thread Jason Moore
Any thoughts on this? We are about to submit a deprecation PR and I'd like to set it up so that we change it at the correct version. Jason moorepants.info +01 530-601-9791 On Wed, Mar 30, 2016 at 9:09 PM, Jason Moore <moorepa...@gmail.com> wrote: > Now that we are at 1.0 are

[sympy] Backwards incompatible changes and version numbers

2016-03-30 Thread Jason Moore
Now that we are at 1.0 are we going to enforce major version jumps for backwards incompatible changes? For example, if I am setting up a deprecation warning now, should I plan to remove that warning for version 2.0 or for version 1.1? Jason moorepants.info +01 530-601-9791 -- You received this

Re: [sympy] How to get started for contributing to SymPy

2016-03-30 Thread Jason Moore
Tuhin, Go through this document to get started: https://github.com/sympy/sympy/wiki/introduction-to-contributing Ask here if you have questions along the way. Jason moorepants.info +01 530-601-9791 On Wed, Mar 30, 2016 at 1:11 PM, TUHIN KHARE wrote: > Hi, > I am

Re: [sympy] GSOC 2016: mutivariate factorization and univariate factorization over global fields

2016-03-24 Thread Jason Moore
Daniel, You may or may not get much feedback at this late in the game. The proposals are due tomorrow. You will also need to submit a patch to be considered. Here is our application info: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Best to type up whatever you can come up

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-24 Thread Jason Moore
4:48 AM, SAMPAD SAHA <sampadsa...@gmail.com> >>>>> wrote: >>>>> >>>>>> >>>>>> Here is my proposal. >>>>>> >>>>>> https://github.com/sympy/sympy/wiki/GSoC-2016-Application-Sampad-Kumar-Saha

Re: [sympy] GSoC 2016 : Implementation of multiple types of coordinate systems for vectors

2016-03-23 Thread Jason Moore
n. > > On Wed, Mar 23, 2016 at 10:47 PM, Jason Moore <moorepa...@gmail.com> > wrote: > >> Sanya, >> >> You need to expand the idea part of your proposal. it should be much more >> than copying our idea post. You need to explain what you propose to do: >>

Re: [sympy] GSoC 2016 : Implementation of multiple types of coordinate systems for vectors

2016-03-23 Thread Jason Moore
Sanya, You need to expand the idea part of your proposal. it should be much more than copying our idea post. You need to explain what you propose to do: what, how, why, etc. It is good to show some example code (pseudo or what you hope the future api will look like). Jason moorepants.info +01

Re: [sympy] GSoC : engineering mechanics

2016-03-23 Thread Jason Moore
A statics package would be useful and appropriate. Note that we have two vector implementations (sympy.vector) and (sympy.physics.vector). These can be used to solve statics problems just as well as dynamics. There is also an idea for beam calcs using singularity funcs in the ideas page. You

Re: [sympy] GPU acceleration of certain functionalities in sympy

2016-03-23 Thread Jason Moore
You may want to get familiar with SymPy before proposing new ideas. I'm pretty sure that the majority of computations in SymPy are not even transferable to what a GPU has to to offer. Here are the GSoC Student instructions for our org:

Re: [sympy] Re: GSoC 2016 - Classical Mechanics: Efficient Equation of Motion Generation with Python

2016-03-22 Thread Jason Moore
have python experience but had good dynamics experience, so maybe you can do more than that. I would recommend improving your plans for the actual features that you want to add and the bugs you want to fix. Jason moorepants.info +01 530-601-9791 On Tue, Mar 22, 2016 at 6:45 AM, Jason Moore

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-22 Thread Jason Moore
ics and Computing > I.I.T. Kharagpur > > On Tue, Mar 22, 2016 at 8:08 PM, Jason Moore <moorepa...@gmail.com> wrote: > >> Sounds good, just put it in your proposal. >> >> >> Jason >> moorepants.info >> +01 530-601-9791 >> >> On Tue, Ma

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-22 Thread Jason Moore
; > > > Regards > Sampad Kumar Saha > Mathematics and Computing > I.I.T. Kharagpur > > On Tue, Mar 22, 2016 at 4:13 AM, Jason Moore <moorepa...@gmail.com> wrote: > >> No need to cancel your vacation. Just give a plan for how you will make >> up the days.

Re: [sympy] Re: GSoC 2016 - Classical Mechanics: Efficient Equation of Motion Generation with Python

2016-03-22 Thread Jason Moore
James, That proposal was proposing to add in the Newton Euler method and speed up all the existing methods, among other things. We can always add things if a person finishes early but I'd rather see proposals that promise less so that the scope is guaranteed to be finished. I will comment on

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-21 Thread Jason Moore
the project as this Summer of Code will become an integral part > of all my learning throughout the summer. > > > Regards > Sampad > > > Regards > Sampad Kumar Saha > Mathematics and Computing > I.I.T. Kharagpur > > On Tue, Mar 22, 2016 at 2:3

Re: [sympy] GSOC 16 :Classical Mechanics: Generalize the Equation of Motion Generation Classes

2016-03-21 Thread Jason Moore
Here is our starting point: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions The mechanics stuff is in sympy/physics/vector and sympy/physics/mechanics, along with other things in the PyDy project. Jason moorepants.info +01 530-601-9791 On Wed, Mar 16, 2016 at 5:24 AM, Smit

Re: [sympy] GSOC 2016 Series Expansion

2016-03-21 Thread Jason Moore
Rehas, Go ahead and start drafting a proposal and we can comment on it after you have some material for us to read. Jason moorepants.info +01 530-601-9791 On Sat, Mar 19, 2016 at 1:53 PM, Rehas Sachdeva wrote: > Dear developers! > > I am Rehas, studying at IIIT-Hyderabad,

Re: [sympy] GROUP THEORY

2016-03-21 Thread Jason Moore
Maybe search the code and the docs to see what is already implemented. You can search the github issues as well. Jason moorepants.info +01 530-601-9791 On Mon, Mar 21, 2016 at 1:37 PM, PRAFUL GUPTA < f2014...@hyderabad.bits-pilani.ac.in> wrote: > Hi, > > I am Praful Gupta, a second year

Re: [sympy] A library implementation for all interpolation techniques used in mathematics

2016-03-21 Thread Jason Moore
This sounds like it would be a numerical feature, which is more suited to scipy. If this is symbolic, please explain your idea more thoroughly. Jason moorepants.info +01 530-601-9791 On Sun, Mar 20, 2016 at 3:01 AM, Saurabh Gupta wrote: > Hello Developers, > > I am

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-21 Thread Jason Moore
/sympy/sympy/wiki/GSoC-2016-Application-Sampad-Kumar-Saha-:-Singularity-Functions> > . > Can you please review it and suggest me to improve it. > > > > Regards > Sampad Kumar Saha > Mathematics and Computing > I.I.T. Kharagpur > > On Sat, Mar 19, 2016 at 9:14 PM,

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-21 Thread Jason Moore
t;>> I have updated my proposal here >>> <https://github.com/sympy/sympy/wiki/GSoC-2016-Application-Sampad-Kumar-Saha-:-Singularity-Functions> >>> . >>> Can you please review it and suggest me to improve it. >>> >>> >>> >>> Regards

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-21 Thread Jason Moore
gt;> . >> Can you please review it and suggest me to improve it. >> >> >> >> Regards >> Sampad Kumar Saha >> Mathematics and Computing >> I.I.T. Kharagpur >> >> On Sat, Mar 19, 2016 at 9:14 PM, Jason Moore <moorepa...@gmail.com>

Re: [sympy] Re: GSOC 2016: Classical Mechanics: Efficient Equation of Motion Generation with C++

2016-03-21 Thread Jason Moore
I commented in your google doc draft. Thanks. Jason moorepants.info +01 530-601-9791 On Sun, Mar 20, 2016 at 11:22 PM, Aravind wrote: > Sir, I would like to work for the following project which is a combination > of two single projects. Some of the sympy members

Re: [sympy] GSOC 2016 - Risch Algorithm

2016-03-21 Thread Jason Moore
Michael, Here are our student instructions: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Please go through that to get your self setup. You need to submit the patch and proposal. The more you discuss with us, the better. Jason moorepants.info +01 530-601-9791 On Mon,

Re: [sympy] Re: SymPy Paper

2016-03-19 Thread Jason Moore
PeerJ and other journals follow this: http://www.icmje.org/recommendations/browse/roles-and-responsibilities/defining-the-role-of-authors-and-contributors.html#two which adds an accountability statement too. +1 to either. Jason moorepants.info +01 530-601-9791 On Fri, Mar 18, 2016 at 8:41

Re: [sympy] Contributing to sympy

2016-03-19 Thread Jason Moore
We have this document to help people get started with sympy: https://github.com/sympy/sympy/wiki/introduction-to-contributing Let us know if you have questions when you go through it. Jason moorepants.info +01 530-601-9791 On Fri, Mar 18, 2016 at 9:24 AM, Kanekal Shivaprasad

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-19 Thread Jason Moore
-Singularity-Functions> >>> is >>> link to my proposal. I have almost added all the things which we have >>> disscussed. I still need to add the example and many more "TODO"s are left. >>> I am working on those. >>> >>> >>> Suggest

Re: [sympy] Second Order PDE Solvers

2016-03-19 Thread Jason Moore
Karl, That sounds like a great idea. I think you'd only want to implement analytical methods in SymPy. There are likely other options for numerical PDE solvers. See this to get started: https://github.com/sympy/sympy/wiki/introduction-to-contributing Jason moorepants.info +01 530-601-9791 On

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-19 Thread Jason Moore
fine then. >> >> As you suggested I will be look at ode package for this constant of >> integration thing. >> >> Thank You... >> >> >> >> >> Regards >> Sampad Kumar Saha >> Mathematics and Computing >> I.I.T. Kharagpur >> >&

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-19 Thread Jason Moore
integration while doing indefinite > integration. We can take boundary conditions as input from users that is > not a problem, but we cant use it since there will be no constant of > integration. > > > > Regards > Sampad Kumar Saha > Mathematics and Computing > I.I.T. Kharag

[sympy] This is a great post for anyone applying for GSoC to get an idea of what it takes to contribute to a project

2016-03-18 Thread Jason Moore
Spyder is a bit more complex than SymPy because its dependencies include non-python packages but this should give you an idea of how to wade through things and the process you should follow: http://www.lihaoyi.com/post/DivingIntoOtherPeoplesCode.html Jason moorepants.info +01 530-601-9791 --

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-18 Thread Jason Moore
u to reason that out. Make sure you >>> completely document how you’ve implemented it for the user (and why). >>> >> >>> >> Beam coordinate systems must start at the left end and increase to >>> the right. The definition of the sin

Re: [sympy] SymPy Workshop at FOSSASIA 2016, SIngapore

2016-03-15 Thread Jason Moore
You all should change the order to the pydy and sympy tutorials. It would be better for people to take the sympy on first. Jason moorepants.info +01 530-601-9791 On Tue, Mar 15, 2016 at 9:19 PM, Jason Moore <moorepa...@gmail.com> wrote: > I believe Sahil will be there to present

Re: [sympy] SymPy Workshop at FOSSASIA 2016, SIngapore

2016-03-15 Thread Jason Moore
I believe Sahil will be there to present something on PyDy. Jason moorepants.info +01 530-601-9791 On Tue, Mar 15, 2016 at 9:15 PM, AMiT Kumar wrote: > Hi!, > > This is to notify that I will be conducting a SymPy workshop/tutorial at > FOSSASIA > Conference

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-15 Thread Jason Moore
Functions. >2. Creating Singularity Functions module >3. Creating beam Module >4. Documentation > > > > > > Regards > Sampad Kumar Saha > Mathematics and Computing > I.I.T. Kharagpur > > On Wed, Mar 16, 2016 at 5:44 AM, Jason Moore <moorepa...@

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-15 Thread Jason Moore
That module would import the singularity function module for > using them. > > > > > > Regards > Sampad Kumar Saha > Mathematics and Computing > I.I.T. Kharagpur > > On Wed, Mar 16, 2016 at 5:22 AM, Jason Moore <moorepa...@gmail.com> wrote: > >> I think

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-15 Thread Jason Moore
ons > > > > > Regards > Sampad Kumar Saha > Mathematics and Computing > I.I.T. Kharagpur > > On Wed, Mar 16, 2016 at 5:10 AM, Jason Moore <moorepa...@gmail.com> wrote: > >> The file locations and method class names are just fine details that can >>

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-15 Thread Jason Moore
to get the displacement function E*I*v(x). >>> >>> Note that the singularity functions can be multiplied by arbitrary >>> functions of x as well. This allows for varied loads and cases where E and >>> I vary too. To be strictly correct one should include the int

Re: [sympy] Implement Holonomic Functions

2016-03-15 Thread Jason Moore
Start here: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions, make sure to setup the dev environment and try using sympy. Search the email list archives to find the other discussions on the holonomic functions. There is a long thread about it already which is a good starting

Re: [sympy] GSOC ode Bessel equation

2016-03-15 Thread Jason Moore
Here is a starting point: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 5:40 AM, Surya Narayan wrote: > Hello, > I am Surya Narayan. I want to implement the Bessel's equation for

Re: [sympy] [GSoC '16] Series Expansion

2016-03-15 Thread Jason Moore
See this: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Also search the mailing lists and github for previous discussions about series expansions. Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 10:47 AM, Praveen Agrawal < praveen.agraw...@gmail.com> wrote:

Re: [sympy] REGARDING GSOC 2016

2016-03-15 Thread Jason Moore
See this: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 9:15 PM, wrote: > Hi i am Parth Parashar and i am applying for GSOC2016 .I am interested in > working for improving the

Re: [sympy] GSoC 16: Ordinary Differential Equations

2016-03-15 Thread Jason Moore
See here to get started: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 4:34 PM, Imran Manzoor wrote: > Greetings, > > I am a GSoC aspirant and am interested in this particular idea

Re: [sympy] Gsoc using bessel function to solve ode

2016-03-15 Thread Jason Moore
Here is how to start: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 10:17 PM, Surya Narayan wrote: > Hello, > I am Surya Narayan. > I want to work on Solving Differential Equations in

Re: [sympy] GSoc'16 : SymPy Live and SymPy Gamma

2016-03-15 Thread Jason Moore
I would start by using sympy live and gamma to see what it can and can't do. You can also investigate what the issues are on Github with respect to those projects. Then form a proposal about what you'd like to see added or changed. Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at

Re: [sympy] Gsoc 16 - Ordinary Differential Equations

2016-03-15 Thread Jason Moore
Please follow the student instructions: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Jason moorepants.info +01 530-601-9791 On Fri, Mar 11, 2016 at 2:57 AM, Rajat Kumar wrote: > Hello. > I am Rajat Kumar, a junior year university student from India.

Re: [sympy] GSOC ' 16: Classical Mechanics: Efficient Equation of Motion Generation with Python

2016-03-15 Thread Jason Moore
Please search the email list archives, as we've already discussed this with other potential GSoC students. I'd recommend trying out some of the mechanics and pydy examples. The pydy.model.n_link_pendulum model takes a long time to generate if you have a large number of links. Jason

Re: [sympy] number of proposals

2016-03-15 Thread Jason Moore
Yes you can. Jason moorepants.info +01 530-601-9791 On Fri, Mar 11, 2016 at 10:49 PM, Sahil Aggarwal < sahilaggarwal12011...@gmail.com> wrote: > Can we submit more than one proposal to same organisation? > > -- > You received this message because you are subscribed to the Google Groups >

Re: [sympy] GSOC 2016: Physics Project

2016-03-15 Thread Jason Moore
Your skills sets sound very adequate for the projects. To get an in-depth understanding you should start trying to use the software and see what kinds of problems it can solve. Then read about the issues associated with the software and the ideas proposed on the list. Be sure to search the

Re: [sympy] Gsoc'16:ODE Project

2016-03-15 Thread Jason Moore
That all sounds good. Maybe check out the sympy issues associated with the ODE solvers and propose to fix some of them. Jason moorepants.info +01 530-601-9791 On Sun, Mar 13, 2016 at 1:35 AM, Abhishek kumar wrote: > Hi > I'm Abhishek Kumar and i want to work on ODE's

Re: [sympy] 2D/3D graphics view GUI Sympy

2016-03-15 Thread Jason Moore
If you IPython, the qtconsole, or the notebook you will get matplotlib based plots. Please search the mailing list for Tkinter. There wasn't much support for this type of GUI the last time it was proposed. Jason moorepants.info +01 530-601-9791 On Sun, Mar 13, 2016 at 7:06 AM, Nuno Lopes

Re: [sympy] Re: GSoC 2016 - Classical Mechanics: Efficient Equation of Motion Generation with Python

2016-03-15 Thread Jason Moore
Or perhaps the combination where I would create a generalized equation of motion generator and increase the efficiency of the python code as I go? That sounds really good to me. Jason moorepants.info +01 530-601-9791 On Tue, Mar 8, 2016 at 6:12 PM, James Milam wrote: > I

Re: [sympy] Algorithm description in GSoC proposal

2016-03-15 Thread Jason Moore
I don't think the gory details are required for a good proposal. But you should show that you know what you are talking about and explain things to us that are unlikely to have time to know or understand the details. See some of the past proposals for ideas on what to write. Jason

Re: [sympy] GSOC - Natural Input Parser

2016-03-15 Thread Jason Moore
n about introducing an external dependency would need to be > discussed > > with regards to latex2sympy as well, since that uses a parser generator. > > > > Thanks, Jerry > > > > On Monday, February 29, 2016 at 8:47:27 PM UTC-5, Anthony Scopatz wrote: &g

Re: [sympy] Re: current status of project

2016-03-15 Thread Jason Moore
The status is that nothing much has been done. We really need to figure out how to wrap SymEngine for easy use in SymPy. See the SymEngine mailing list and wiki for some suggestions on how to do that. Jason moorepants.info +01 530-601-9791 On Mon, Mar 14, 2016 at 3:24 PM, James Milam

Re: [sympy] Re: SymPy Paper

2016-03-15 Thread Jason Moore
I'm happy to be a part of this too. I imagine the scope could be huge, so maybe deciding on what the main points of the paper would be a good start. Aaron, do you have an idea of what the theme of the paper would be? Jason moorepants.info +01 530-601-9791 On Tue, Mar 15, 2016 at 3:02 AM,

Re: [sympy] Gsoc Idea 2016 Series Expansion

2016-03-15 Thread Jason Moore
I would try using the series expansion modules in SymPy and see if you can discover some of the things it can't do. You can search the mailing list and github issues to find out problems or suggestions for series expansions. Jason moorepants.info +01 530-601-9791 On Tue, Mar 15, 2016 at 6:42

Re: [symengine] Re: [sympy] Re: GSOC 2016: Classical Mechanics: Efficient Equation of Motion Generation with C++

2016-03-15 Thread Jason Moore
Maybe you can list all of the slow functions in sympy.core and sympy.matrices and then find out if they exist in SymEngine as a next step. Jason moorepants.info +01 530-601-9791 On Tue, Mar 15, 2016 at 7:25 AM, Isuru Fernando wrote: > Hi, > > You have to figure out which

Re: [sympy] Google SoC '16: Series expansions

2016-03-15 Thread Jason Moore
Joseph, There is a lot of work going on in series expansions both in SymPy and SymEngine. There was a SymPy series expansion project last summer for SymPy by Shivam Vats. You can check out his proposal, report, and blog on the SymPy wiki. There are currently a group of UC Davis students working

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-15 Thread Jason Moore
Yes, it would be nice if simplify worked with singularity funcs. Jason moorepants.info +01 530-601-9791 On Tue, Mar 15, 2016 at 8:27 AM, SAMPAD SAHA wrote: > Jason, > > Do we expect `simplify` ( a method under SingularityFunction class) to > give output like this: > >

Re: [sympy] GSoC 2016: Singularity Functions

2016-03-15 Thread Jason Moore
I think you'd want the user to input the loads on the beam as singularity functions or some higher level abstraction. If you require them to manually compute the bending moment then you are defeating the purpose of having a CAS do it for you. Jason moorepants.info +01 530-601-9791 On Sun, Mar

Re: [sympy] simpify, lambify tutorail errors

2016-03-10 Thread Jason Moore
SymPy live doesn't support all functionality of SymPy due to various technical reasons. I recommend using SymPy locally or with something like SageMathCloud. Jason Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 5:54 PM, dzericak wrote: > Hopping to learn

Re: [sympy] GSoC 2016 idea

2016-03-10 Thread Jason Moore
Jason, Here is your starting point: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Let us know if you have any questions. Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 3:26 PM, Jason Chan wrote: > Hi, > > I am Jason and I will be

Re: [sympy] SymPy Live and SymPy Gamma | GSoC'16

2016-03-10 Thread Jason Moore
See below. Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 7:16 AM, Ashutosh Saboo wrote: > Hello everyone. > > I am Ashutosh Saboo, a undergrad student from BITS Pilani, Goa Campus, > currently pursuing M.Sc(Hons.) Maths + B.Tech Computer Science. >

Re: [sympy] Re: How do you replace a function argument with a float?

2016-03-10 Thread Jason Moore
if not rounding: rounding = rounding2 > >> > 345 if dps: prec = dps_to_prec(dps) > >> > --> 346 return self.context.make_mpf(self.func(prec, > rounding)) > >> > 347 > >> > 348 @property > >> &

Re: [sympy] Re: GSoC '16: Implementation of GUI for Sympy.

2016-03-10 Thread Jason Moore
If the software requires ANTLR4, then installing ANTLR3 is likely the issue. You need to figure out how to install ANTLR4. Maybe ask on their mailing list. Jason moorepants.info +01 530-601-9791 On Thu, Mar 10, 2016 at 11:05 AM, Aman Deep wrote: > Hi, Developers, > >

[sympy] How do you replace a function argument with a float?

2016-03-10 Thread Jason Moore
I don't understand this behavior: Python 3.5.1 |Continuum Analytics, Inc.| (default, Dec 7 2015, 11:16:01) Type "copyright", "credits" or "license" for more information. IPython 4.1.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref ->

Re: [sympy] Re: GSoC '16: Implementation of GUI for Sympy.

2016-03-09 Thread Jason Moore
I think that creating a formula input widget for Jupyter would be a solid project to work on for GSoC. That would open up a lot of possibilities. Jason moorepants.info +01 530-601-9791 On Wed, Mar 9, 2016 at 2:10 PM, Francesco Bonazzi wrote: > Jupyter notebooks use

Re: [sympy] Re: SymPy 1.0 is released

2016-03-09 Thread Jason Moore
Thanks Aaron and all the contributors! It's great to move to 1.0! Jason moorepants.info +01 530-601-9791 On Wed, Mar 9, 2016 at 1:52 PM, Rathmann wrote: > Congratulations! > > > On Wednesday, March 9, 2016 at 12:02:33 PM UTC-8, Aaron Meurer wrote: >> >> I'm proud the

Re: [sympy] Re: GSoC '16: Implementation of GUI for Sympy.

2016-03-09 Thread Jason Moore
Note that you can simply type "%matplotlib notebook" if you want interactive plots from matplotlib in the notebook. Bokeh and mpld3 also give this functionality. Jason moorepants.info +01 530-601-9791 On Wed, Mar 9, 2016 at 8:06 AM, Sartaj Singh wrote: > > I ran the

Re: [sympy] GSoC 2016 - Classical Mechanics: Efficient Equation of Motion Generation with Python

2016-03-08 Thread Jason Moore
, 2016 at 1:06 PM, Alan Bromborsky <abrombo...@gmail.com> wrote: > Has anyone looked at parallel python to speed things up (where applicable > of course)? > > On Tue, Mar 8, 2016 at 3:54 PM, Jason Moore <moorepa...@gmail.com> wrote: > >> The two equation of mo

Re: [sympy] GSoC 2016 - Classical Mechanics: Efficient Equation of Motion Generation with Python

2016-03-08 Thread Jason Moore
The two equation of motion ideas can be combined. The C++ is a bigger effort because we do not yet have an easy way to replace SymPy objects with C++ backed objects in a seamless way. The problem is the same, we'd like to speed up the EoM formulations and the linearizations. There may be a lot to

[sympy] Re: GSoC 2016: Singularity Functions

2016-03-08 Thread Jason Moore
Kumar Saha >> Mathematics and Computing >> I.I.T. Kharagpur >> >> On Fri, Mar 4, 2016 at 4:31 AM, SAMPAD SAHA <sampadsa...@gmail.com> >> wrote: >> >>> >>> Yah, That would be great. After drafting my proposal on wiki, I will let >

Re: [sympy] GSoC 2016 : sympy.physics.quantum

2016-03-08 Thread Jason Moore
No one has really worked on that package significantly for a number of years. You are welcome to work on it if it interests you. But you will likely need to drive the ideas for future additions yourself. There are a number of bugs in the issue tracker that need to be fixed. If you write one of the

Re: [sympy] Re: GSOC 2016: Classical Mechanics: Efficient Equation of Motion Generation with C++

2016-03-07 Thread Jason Moore
Nice work. Now you can investigate the core functions for speed. You should investigate whether SymPy supports all of these functions. I would read the symengine list to get an idea of how symengine will be used in SymPy. Jason moorepants.info +01 530-601-9791 On Mon, Mar 7, 2016 at 10:12 AM,

Re: [sympy] GSOC 2016

2016-03-07 Thread Jason Moore
Vladimir, You are welcome to choose any idea you like, either from the list or one that you make up. These are instructions for starting: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Basically, think about what you'd like to propose, discuss with us here, draft on the

Re: [sympy] GSoC 16 - Classical Mechanics: Efficient Equation of Motion Generation with Python

2016-03-06 Thread Jason Moore
See this thread for some information: https://groups.google.com/forum/#!searchin/sympy/pyinstrument/sympy/KFyfC4gQUSQ/sNwKzAFVAwAJ Jason moorepants.info +01 530-601-9791 On Sun, Mar 6, 2016 at 2:49 PM, Rajat Kumar wrote: > Hello. > I am Rajat Kumar, a junior year

Re: [sympy] GSoC 2016: Parsing

2016-03-06 Thread Jason Moore
Tejas, Here is the parsing source code: https://github.com/sympy/sympy/tree/master/sympy/parsing We'd like to be able to parse many mathematical languages. LaTeX is a commonly requested one, for example. Jason moorepants.info +01 530-601-9791 On Sun, Mar 6, 2016 at 2:15 AM, Tejas Srinivasan <

Re: [sympy] could anyone help me about showing graph?

2016-03-05 Thread Jason Moore
You probably need matplotlib. Jason moorepants.info +01 530-601-9791 On Sat, Mar 5, 2016 at 10:40 PM, Nam-Kyu Ahn wrote: > I installed latest latest anaconda on my windows. after that, I installed > GAE and sympy gamma.. and everythings ok except graph. > > I searched

Re: [sympy] Re: memory error

2016-03-05 Thread Jason Moore
SymPy uses a cache to store results of computations so that you don't have expend much computational effort when doing repetitions of computations. You can manually clear that cache if you want using the function you show. Jason moorepants.info +01 530-601-9791 On Wed, Mar 2, 2016 at 8:16 AM,

Re: [sympy] sympy live and sympy gamma

2016-03-05 Thread Jason Moore
Here are the issues lists for Gamma and LIve: https://github.com/sympy/sympy_gamma/issues https://github.com/sympy/sympy-live/issues I'd recommend reading through and seeing if you can fix one or more. Jason moorepants.info +01 530-601-9791 On Wed, Mar 2, 2016 at 3:19 AM, shivangi bajpai

Re: [sympy] GSOC 16 Assumption module in symengine.

2016-03-05 Thread Jason Moore
Vyas, Please be more specific about your request for information and help. What handlers are you talking about? Jason moorepants.info +01 530-601-9791 On Wed, Mar 2, 2016 at 3:16 AM, Vyas Giridharan wrote: > Hi. > I am new to the community and i look towards

Re: [sympy] GSoC 16: Improve the plotting module

2016-03-05 Thread Jason Moore
Prachi, Here are all the plotting issues: https://github.com/sympy/sympy/issues?q=is%3Aopen+is%3Aissue+label%3Aplotting See if any interest you and you can try to fix one or more. Jason moorepants.info +01 530-601-9791 On Wed, Mar 2, 2016 at 9:02 AM, Prachi Agrawal

Re: [sympy] Re: GSOC 2016 sympy-live-and-sympy-gamma-on-google-app-engine

2016-03-05 Thread Jason Moore
mvnn, It is very difficult to read your email messages. Please use standard fonts, complete sentences, and proper punctuation, etc. Thanks, Jason moorepants.info +01 530-601-9791 On Wed, Mar 2, 2016 at 10:15 AM, mvnnn wrote: > > > On Wednesday, March 2, 2016 at

Re: [sympy] Contributing to Sympy (GSoC and in general)

2016-03-05 Thread Jason Moore
Here are the student instructions: https://github.com/sympy/sympy/wiki/GSoC-2016-Student-Instructions Jason moorepants.info +01 530-601-9791 On Thu, Mar 3, 2016 at 6:44 AM, Rohit Jena wrote: > Hello everyone, > > My name is Rohit Kumar Jena. Currently, I am a first year

<    1   2   3   4   5   6   7   8   9   10   >