+ 2
Asking suggestions for "Class Polynomial" code
Hello programming fellows! I made a code days ago, in c++, that creates Polynomial class, whose attributes are an array of its coefficients and an integer representing the mentioned array's size. Each coefficient multiplies with x ^ (index where this coeff. is placed in array). The methods of this class parse those coeffs, give the function's derivative, give the function's integral in specified interval, and the root closest to initial guess by means of Newton-Raphson's method. Is the implementation ok?
4 Answers
+ 2
it is good I liked it the code is good
+ 1
The code's link:
https://code.sololearn.com/cTaAPw3OgV42/#cpp
+ 1
Thank you, Sandeep Chatterjee!
+ 1
Which ones, Sandeep?