Given a polynomial p known to have positive integer coefficients, deduce the values of the coefficients.
For example:
p = @(x) x^2 + 2*x + 15;
c = guess_the_coefficients(p);
outputs
c = [1 2 15]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers35
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2816 Solvers
-
Back to basics 12 - Input Arguments
624 Solvers
-
Return unique values without sorting
1011 Solvers
-
Flip the main diagonal of a matrix
914 Solvers
-
440 Solvers
More from this Author56
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Test cases are added to the problem.