Searched refs:knots (Results 1 - 7 of 7) sorted by relevance

/external/eigen/unsupported/Eigen/src/Splines/
H A DSplineFitting.h25 * The knots are computed as
31 * where \f$p\f$ is the degree and \f$m+1\f$ the number knots
36 * \param[out] knots The output knot vector.
41 void KnotAveraging(const KnotVectorType& parameters, DenseIndex degree, KnotVectorType& knots) argument
43 knots.resize(parameters.size()+degree+1);
46 knots(j+degree) = parameters.segment(j,degree).mean();
48 knots.segment(0,degree+1) = KnotVectorType::Zero(degree+1);
49 knots.segment(knots.size()-degree-1,degree+1) = KnotVectorType::Ones(degree+1);
123 KnotVectorType knots; local
[all...]
H A DSpline.h71 * \param knots The spline's knot vector.
75 Spline(const OtherVectorType& knots, const OtherArrayType& ctrls) : m_knots(knots), m_ctrls(ctrls) {} argument
83 m_knots(spline.knots()), m_ctrls(spline.ctrls()) {}
86 * \brief Returns the knots of the underlying spline.
88 const KnotVectorType& knots() const { return m_knots; } function in class:Eigen::Spline
91 * \brief Returns the knots of the underlying spline.
190 static DenseIndex Span(typename SplineTraits<Spline>::Scalar u, DenseIndex degree, const typename SplineTraits<Spline>::KnotVectorType& knots);
202 * \param knots The underlying spline's knot vector.
204 static BasisVectorType BasisFunctions(Scalar u, DenseIndex degree, const KnotVectorType& knots);
213 Span( typename SplineTraits< Spline<_Scalar, _Dim, _Degree> >::Scalar u, DenseIndex degree, const typename SplineTraits< Spline<_Scalar, _Dim, _Degree> >::KnotVectorType& knots) argument
226 BasisFunctions( typename Spline<_Scalar, _Dim, _Degree>::Scalar u, DenseIndex degree, const typename Spline<_Scalar, _Dim, _Degree>::KnotVectorType& knots) argument
[all...]
/external/eigen/unsupported/test/
H A Dsplines.cpp38 RowVectorXd knots(12);
39 knots << 0,
63 return Spline<double, 2, Dynamic>(knots, ctrls);
69 RowVectorXd knots(11);
70 knots << 0,
93 return Spline<double, 3, Dynamic>(knots, ctrls);
138 RowVectorXd u = spline.knots();
/external/opencv/ml/src/
H A Dml_inner_functions.cpp188 float* knots = (float*)cvAlloc( len * sizeof(float) ); local
195 knots[0] = probs[0];
197 knots[i] = knots[i - 1] + probs[i];
202 if ( CV_MAT_ELEM(*univals, float, 0, i) <= knots[j] )
209 cvFree(&knots);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 344 milliseconds