Post Reply 
Test symb2poly == polyToCoeff
12-12-2016, 08:22 PM (This post was last modified: 04-17-2017 01:01 AM by compsystems.)
Post: #1
Test symb2poly == polyToCoeff
Hello

symb2poly == polyToCoeff as vector
poly2symb == coeffToPoly

increasing: off & simplify flag: NONE This should only extract the coefficients of each term

> symb2poly( (x^2) + (b*x/a) + (b/(2*a))^2, x ); ->
poly1[1, 4*a*b/(4*a^2), b^2/(4*a^2)] // ok but why Rewrites the coefficients?

The output should be ->
poly1[ 1, b/a, (b/(2*a))^2 ]

with normal

normal( symb2poly( (x^2) + (b*x/a) + (b/(2*a))^2, x ) );
poly1[ 1, b/a, (b/(2*a))^2 ]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Test symb2poly == polyToCoeff - compsystems - 12-12-2016 08:22 PM



User(s) browsing this thread: 1 Guest(s)