cargodog / polynomials

MIT License
4 stars 4 forks source link

Print out polynomial #31

Open andis854 opened 1 year ago

andis854 commented 1 year ago

A feature that prints out the polynomial with respect to a variable would be useful, something like this:

https://github.com/gifnksm/polynomial-rs/blob/master/src/lib.rs

(search for the "pretty" function). Optimal would be if the polynomial could be printed using "println!".

jacks0n9 commented 5 months ago

Check out PR 32 that I made four months ago. Since then, I have made my own polynomials library with display and support for dividing a polynomial by another polynomial. It's called polynomials_pro.