Skip to content
Snippets Groups Projects
Commit 5bab4fca authored by Francois Keith's avatar Francois Keith
Browse files

Add the computation of the second derivative to Polynome

parent e7657e73
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,6 @@ double Polynome::ComputeDerivative(double t)
double Polynome::ComputeSecDerivative(double t)
{
double r=0,pt=1;
for(unsigned int i=2;i<m_Coefficients.size();i++)
{
......@@ -72,7 +71,6 @@ double Polynome::ComputeSecDerivative(double t)
pt *=t;
}
return r;
}
void Polynome::GetCoefficients(vector<double> &lCoefficients) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment