Re: [sympy] Matrix vector multiplication

2023-11-02 Thread Lenni Lemoy
Hi Aaron, thank you for your answer! Here is more detail on what I did (from my ipython session): In [1]: from sympy import symbols, eye, Matrix In [2]: b = np.array([symbols(f"b_{i}") for i in range(3)]) In [3]: M = eye(3) In [4]: M*b Out[4]: array([[b_0, 0, 0], [0, b_1, 0], [0,

Re: [sympy] SymPy CZI Grant Documentation Blog Post

2023-11-02 Thread Aaron Meurer
Yes, although a few pages are only available in the dev docs (https://docs.sympy.org/dev/index.html). All the relevant pages are linked to from the blog post. Aaron Meurer On Thu, Nov 2, 2023 at 3:12 AM wrote: > > Dear Aaron, > > Thanks! > Is this new documentation available now? > Probably due

RE: [sympy] SymPy CZI Grant Documentation Blog Post

2023-11-02 Thread peter.stahlecker
Dear Aaron, Thanks! Is this new documentation available now? Probably due to my advanced age, I am not good at understanding most of the technical terms in your blog, but I do know math a bit and I am a heavy user of sympy mechanics. Take care! Peter -Original Message- From:

Re: [sympy] SymPy CZI Grant Documentation Blog Post

2023-11-02 Thread Jason Moore
Great work Aaron! A docs upgrade has been long needed. Jason moorepants.info +01 530-601-9791 On Thu, Nov 2, 2023 at 8:16 AM Aaron Meurer wrote: > I have written a blog post about the documentation work that I did as > part of the CZI EOSS cycle 4 grant. > >

[sympy] SymPy CZI Grant Documentation Blog Post

2023-11-02 Thread Aaron Meurer
I have written a blog post about the documentation work that I did as part of the CZI EOSS cycle 4 grant. https://labs.quansight.org/blog/sympy-documentation Feedback on the new documentation pages or documentation feedback in general is always welcome. Aaron Meurer -- You received this