Git Product home page Git Product logo

Comments (6)

benruijl avatar benruijl commented on August 17, 2024 1

Thanks for reporting! At the moment multiplications in the argument of coefficient indeed do not work. This will be fixed in the next version, likely releasing next week.

from symbolica.

benruijl avatar benruijl commented on August 17, 2024

Fixed in 7f5c890!

from symbolica.

NAThompson avatar NAThompson commented on August 17, 2024

@benruijl : How hard it is to drop a 0.4.0 version for this?

from symbolica.

benruijl avatar benruijl commented on August 17, 2024

I will release 0.4 on Monday or Tuesday. If you need the fix earlier, you could try the custom compilation instructions. Let me know if you need help with that.

Note that the coefficient function only matches a literal pattern, to prevent unexpected performance loss from an implicit call to expand (this behaviour may change in the future).

from symbolica.

NAThompson avatar NAThompson commented on August 17, 2024

@benruijl : So you mean that this might match

>>> x, y = Expression.vars('x', 'y')
>>> e = 5*x + x * y + x**2 + 5
>>> print(e.coefficient(x*y))

will now be correct, but perhaps

>>> print(e.coefficient(y*x))

might not be?

(No urgency on my end, just interested in trying it out.)

from symbolica.

benruijl avatar benruijl commented on August 17, 2024

That will work (note that y*x is normalized to x*y upon creation), but the following would not:

x, y = Expression.vars('x', 'y')
e = (1+x)*(1+y)
print(e.coefficient(x*y))

from symbolica.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.