[sympy] Inquiry regarding Gsod Participation.

2024-01-06 Thread Dhruv gupta
Hi, I wanted to ensure that does sympy participated in GSOD 2023 ? I am looking forward to contribute to it in 2024. This organization excites me because of involvement of mathematics and code. Looking to hear from you soon. Regards Dhruv Gupta -- You received this message because you

[sympy] Regarding new contribution and installation

2023-12-18 Thread Dhruv gupta
Hi there, I wanted to ask that I am a windows user and wants to contribute to Sympy. Do I need to make any OS changes like windows to linux or I can continue with windows? Regards Dhruv Gupta :) -- You received this message because you are subscribed to the Google Groups "sympy&q

[sympy] How to get started with contribution

2021-11-21 Thread dhruv soni
Hello all, I am Dhruv Soni and I'm new to open source contribution but i am well aware of python and c++. I would love to contribute to sympy, could someone please guide me how can i get started? -- You received this message because you are subscribed to the Google Groups "sympy&q

Re: [sympy] Identity operator doesn't act on adjoint operator

2020-07-01 Thread Dhruv Mendiratta
Hi, I am a beginner in the field (about halfway through my first course) and I too think you are right about this being a bug. I think making `Dagger` a subclass of `Operator` should work as a hermitian conjugate should behave as an operator. On Wed, Jul 1, 2020 at 3:18 AM Aaron Meurer wrote:

Re: [sympy] Re: Profiling lagrange.py

2020-03-10 Thread Dhruv Mendiratta
lly? > > You can also try using line profiler if you are trying to extract > individual lines that are slow. > > Aaron Meurer > > On Sun, Mar 8, 2020 at 12:52 PM Dhruv Mendiratta > wrote: > > > > Any help would be greatly appreciated. > > > &

[sympy] Re: Profiling lagrange.py

2020-03-08 Thread Dhruv Mendiratta
Any help would be greatly appreciated. On Sat, Mar 7, 2020 at 6:17 PM Dhruv Mendiratta wrote: > I have attached an html file which show the results I am getting. Even > though I have spent the past few days trying to understand the results I am > not able to. The prob

[sympy] Developer Introduction [GSOC 2018 Aspirant]

2018-02-20 Thread Dhruv Thakker
Hello my name is Dhruv Thakker pursuing Btech in ICT(Information and Communication Technology) with minor in CS(Computational Science) and I aspire to take part in GSOC2018. A little help needed on How to Start Contributing? -- You received this message because you are subscribed to the Google

[sympy] Re: Subclassing Poly?

2009-04-21 Thread dhruv
Thanks for the help, but I'm still stuck! create GeneratingFunction.__new__() with your own arguments and then call Poly.__new__() from it, with any preprocessing that you need. This is what I've got so far: == generating_functions.py from sympy import Poly X = Symbol('X')