Open CASCADE Technology Reference Manual 8.0.0
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions
AppDef_ParLeastSquareOfTheGradient Class Reference

#include <AppDef_ParLeastSquareOfTheGradient.hxx>

Public Member Functions

 AppDef_ParLeastSquareOfTheGradient (const AppDef_MultiLine &SSP, const int FirstPoint, const int LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector &Parameters, const int NbPol)
 given a MultiLine, this algorithm computes the least square resolution using the Householder-QR method. If the first and/or the last point is a constraint point, the value of the tangency or curvature is computed in the resolution. NbPol is the number of control points wanted for the approximating curves. The system to solve is the following: A X = B. Where A is the Bernstein matrix computed with the parameters, B the points coordinates and X the poles solutions. The matrix A is the same for each coordinate x, y and z and is also the same for each MultiLine point because they are approximated in parallel(so with the same parameter, only the vector B changes).
 
 AppDef_ParLeastSquareOfTheGradient (const AppDef_MultiLine &SSP, const int FirstPoint, const int LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const int NbPol)
 Initializes the fields of the object.
 
 AppDef_ParLeastSquareOfTheGradient (const AppDef_MultiLine &SSP, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const int FirstPoint, const int LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector &Parameters, const int NbPol)
 given a MultiLine, this algorithm computes the least square resolution using the Householder-QR method. If the first and/or the last point is a constraint point, the value of the tangency or curvature is computed in the resolution. Deg is the degree wanted for the approximating curves. The system to solve is the following: A X = B. Where A is the BSpline functions matrix computed with <parameters>, B the points coordinates and X the poles solutions. The matrix A is the same for each coordinate x, y and z and is also the same for each MultiLine point because they are approximated in parallel(so with the same parameter, only the vector B changes).
 
 AppDef_ParLeastSquareOfTheGradient (const AppDef_MultiLine &SSP, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const int FirstPoint, const int LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const int NbPol)
 Initializes the fields of the object.
 
void Perform (const math_Vector &Parameters)
 Is used after having initialized the fields. The case "CurvaturePoint" is not treated in this method.
 
void Perform (const math_Vector &Parameters, const double l1, const double l2)
 Is used after having initialized the fields.
 
void Perform (const math_Vector &Parameters, const math_Vector &V1t, const math_Vector &V2t, const double l1, const double l2)
 Is used after having initialized the fields. <V1t> is the tangent vector at the first point. <V2t> is the tangent vector at the last point.
 
void Perform (const math_Vector &Parameters, const math_Vector &V1t, const math_Vector &V2t, const math_Vector &V1c, const math_Vector &V2c, const double l1, const double l2)
 Is used after having initialized the fields. <V1t> is the tangent vector at the first point. <V2t> is the tangent vector at the last point. <V1c> is the tangent vector at the first point. <V2c> is the tangent vector at the last point.
 
bool IsDone () const
 returns True if all has been correctly done.
 
AppParCurves_MultiCurve BezierValue ()
 returns the result of the approximation, i.e. all the Curves. An exception is raised if NotDone.
 
const AppParCurves_MultiBSpCurveBSplineValue ()
 returns the result of the approximation, i.e. all the Curves. An exception is raised if NotDone.
 
const math_MatrixFunctionMatrix () const
 returns the function matrix used to approximate the set.
 
const math_MatrixDerivativeFunctionMatrix () const
 returns the derivative function matrix used to approximate the set.
 
void ErrorGradient (math_Vector &Grad, double &F, double &MaxE3d, double &MaxE2d)
 returns the maximum errors between the MultiLine and the approximation curves. F is the sum of the square distances. Grad is the derivative vector of the function F.
 
const math_MatrixDistance ()
 returns the distances between the points of the multiline and the approximation curves.
 
void Error (double &F, double &MaxE3d, double &MaxE2d)
 returns the maximum errors between the MultiLine and the approximation curves. F is the sum of the square distances.
 
double FirstLambda () const
 returns the value (P2 - P1)/ V1 if the first point was a tangency point.
 
double LastLambda () const
 returns the value (PN - PN-1)/ VN if the last point was a tangency point.
 
const math_MatrixPoints () const
 returns the matrix of points value.
 
const math_MatrixPoles () const
 returns the matrix of resulting control points value.
 
const math_IntegerVectorKIndex () const
 Returns the indexes of the first non null values of A and DA. The values are non null from Index(ieme point) +1 to Index(ieme point) + degree +1.
 

Protected Member Functions

void Init (const AppDef_MultiLine &SSP, const int FirstPoint, const int LastPoint)
 is used by the constructors above.
 
int NbBColumns (const AppDef_MultiLine &SSP) const
 returns the number of second member columns. Is used internally to initialize the fields.
 
int TheFirstPoint (const AppParCurves_Constraint FirstCons, const int FirstPoint) const
 returns the first point being fitted.
 
int TheLastPoint (const AppParCurves_Constraint LastCons, const int LastPoint) const
 returns the last point being fitted.
 
void Affect (const AppDef_MultiLine &SSP, const int Index, AppParCurves_Constraint &Cons, math_Vector &Vt, math_Vector &Vc)
 Affects the fields in the case of a constraint point.
 
void ComputeFunction (const math_Vector &Parameters)
 
void SearchIndex (math_IntegerVector &Index)
 
void MakeTAA (math_Vector &TheA, math_Vector &TheB)
 computes internal matrixes for the resolution
 
void MakeTAA (math_Vector &TheA)
 computes internal matrixes for the resolution
 
void MakeTAA (math_Vector &TheA, math_Matrix &TheB)
 computes internal matrixes for the resolution
 

Constructor & Destructor Documentation

◆ AppDef_ParLeastSquareOfTheGradient() [1/4]

AppDef_ParLeastSquareOfTheGradient::AppDef_ParLeastSquareOfTheGradient ( const AppDef_MultiLine & SSP,
const int FirstPoint,
const int LastPoint,
const AppParCurves_Constraint FirstCons,
const AppParCurves_Constraint LastCons,
const math_Vector & Parameters,
const int NbPol )

given a MultiLine, this algorithm computes the least square resolution using the Householder-QR method. If the first and/or the last point is a constraint point, the value of the tangency or curvature is computed in the resolution. NbPol is the number of control points wanted for the approximating curves. The system to solve is the following: A X = B. Where A is the Bernstein matrix computed with the parameters, B the points coordinates and X the poles solutions. The matrix A is the same for each coordinate x, y and z and is also the same for each MultiLine point because they are approximated in parallel(so with the same parameter, only the vector B changes).

◆ AppDef_ParLeastSquareOfTheGradient() [2/4]

AppDef_ParLeastSquareOfTheGradient::AppDef_ParLeastSquareOfTheGradient ( const AppDef_MultiLine & SSP,
const int FirstPoint,
const int LastPoint,
const AppParCurves_Constraint FirstCons,
const AppParCurves_Constraint LastCons,
const int NbPol )

Initializes the fields of the object.

◆ AppDef_ParLeastSquareOfTheGradient() [3/4]

AppDef_ParLeastSquareOfTheGradient::AppDef_ParLeastSquareOfTheGradient ( const AppDef_MultiLine & SSP,
const NCollection_Array1< double > & Knots,
const NCollection_Array1< int > & Mults,
const int FirstPoint,
const int LastPoint,
const AppParCurves_Constraint FirstCons,
const AppParCurves_Constraint LastCons,
const math_Vector & Parameters,
const int NbPol )

given a MultiLine, this algorithm computes the least square resolution using the Householder-QR method. If the first and/or the last point is a constraint point, the value of the tangency or curvature is computed in the resolution. Deg is the degree wanted for the approximating curves. The system to solve is the following: A X = B. Where A is the BSpline functions matrix computed with <parameters>, B the points coordinates and X the poles solutions. The matrix A is the same for each coordinate x, y and z and is also the same for each MultiLine point because they are approximated in parallel(so with the same parameter, only the vector B changes).

◆ AppDef_ParLeastSquareOfTheGradient() [4/4]

AppDef_ParLeastSquareOfTheGradient::AppDef_ParLeastSquareOfTheGradient ( const AppDef_MultiLine & SSP,
const NCollection_Array1< double > & Knots,
const NCollection_Array1< int > & Mults,
const int FirstPoint,
const int LastPoint,
const AppParCurves_Constraint FirstCons,
const AppParCurves_Constraint LastCons,
const int NbPol )

Initializes the fields of the object.

Member Function Documentation

◆ Affect()

void AppDef_ParLeastSquareOfTheGradient::Affect ( const AppDef_MultiLine & SSP,
const int Index,
AppParCurves_Constraint & Cons,
math_Vector & Vt,
math_Vector & Vc )
protected

Affects the fields in the case of a constraint point.

◆ BezierValue()

AppParCurves_MultiCurve AppDef_ParLeastSquareOfTheGradient::BezierValue ( )

returns the result of the approximation, i.e. all the Curves. An exception is raised if NotDone.

◆ BSplineValue()

const AppParCurves_MultiBSpCurve & AppDef_ParLeastSquareOfTheGradient::BSplineValue ( )

returns the result of the approximation, i.e. all the Curves. An exception is raised if NotDone.

◆ ComputeFunction()

void AppDef_ParLeastSquareOfTheGradient::ComputeFunction ( const math_Vector & Parameters)
protected

◆ DerivativeFunctionMatrix()

const math_Matrix & AppDef_ParLeastSquareOfTheGradient::DerivativeFunctionMatrix ( ) const

returns the derivative function matrix used to approximate the set.

◆ Distance()

const math_Matrix & AppDef_ParLeastSquareOfTheGradient::Distance ( )

returns the distances between the points of the multiline and the approximation curves.

◆ Error()

void AppDef_ParLeastSquareOfTheGradient::Error ( double & F,
double & MaxE3d,
double & MaxE2d )

returns the maximum errors between the MultiLine and the approximation curves. F is the sum of the square distances.

◆ ErrorGradient()

void AppDef_ParLeastSquareOfTheGradient::ErrorGradient ( math_Vector & Grad,
double & F,
double & MaxE3d,
double & MaxE2d )

returns the maximum errors between the MultiLine and the approximation curves. F is the sum of the square distances. Grad is the derivative vector of the function F.

◆ FirstLambda()

double AppDef_ParLeastSquareOfTheGradient::FirstLambda ( ) const

returns the value (P2 - P1)/ V1 if the first point was a tangency point.

◆ FunctionMatrix()

const math_Matrix & AppDef_ParLeastSquareOfTheGradient::FunctionMatrix ( ) const

returns the function matrix used to approximate the set.

◆ Init()

void AppDef_ParLeastSquareOfTheGradient::Init ( const AppDef_MultiLine & SSP,
const int FirstPoint,
const int LastPoint )
protected

is used by the constructors above.

◆ IsDone()

bool AppDef_ParLeastSquareOfTheGradient::IsDone ( ) const

returns True if all has been correctly done.

◆ KIndex()

const math_IntegerVector & AppDef_ParLeastSquareOfTheGradient::KIndex ( ) const

Returns the indexes of the first non null values of A and DA. The values are non null from Index(ieme point) +1 to Index(ieme point) + degree +1.

◆ LastLambda()

double AppDef_ParLeastSquareOfTheGradient::LastLambda ( ) const

returns the value (PN - PN-1)/ VN if the last point was a tangency point.

◆ MakeTAA() [1/3]

void AppDef_ParLeastSquareOfTheGradient::MakeTAA ( math_Vector & TheA)
protected

computes internal matrixes for the resolution

◆ MakeTAA() [2/3]

void AppDef_ParLeastSquareOfTheGradient::MakeTAA ( math_Vector & TheA,
math_Matrix & TheB )
protected

computes internal matrixes for the resolution

◆ MakeTAA() [3/3]

void AppDef_ParLeastSquareOfTheGradient::MakeTAA ( math_Vector & TheA,
math_Vector & TheB )
protected

computes internal matrixes for the resolution

◆ NbBColumns()

int AppDef_ParLeastSquareOfTheGradient::NbBColumns ( const AppDef_MultiLine & SSP) const
protected

returns the number of second member columns. Is used internally to initialize the fields.

◆ Perform() [1/4]

void AppDef_ParLeastSquareOfTheGradient::Perform ( const math_Vector & Parameters)

Is used after having initialized the fields. The case "CurvaturePoint" is not treated in this method.

◆ Perform() [2/4]

void AppDef_ParLeastSquareOfTheGradient::Perform ( const math_Vector & Parameters,
const double l1,
const double l2 )

Is used after having initialized the fields.

◆ Perform() [3/4]

void AppDef_ParLeastSquareOfTheGradient::Perform ( const math_Vector & Parameters,
const math_Vector & V1t,
const math_Vector & V2t,
const double l1,
const double l2 )

Is used after having initialized the fields. <V1t> is the tangent vector at the first point. <V2t> is the tangent vector at the last point.

◆ Perform() [4/4]

void AppDef_ParLeastSquareOfTheGradient::Perform ( const math_Vector & Parameters,
const math_Vector & V1t,
const math_Vector & V2t,
const math_Vector & V1c,
const math_Vector & V2c,
const double l1,
const double l2 )

Is used after having initialized the fields. <V1t> is the tangent vector at the first point. <V2t> is the tangent vector at the last point. <V1c> is the tangent vector at the first point. <V2c> is the tangent vector at the last point.

◆ Points()

const math_Matrix & AppDef_ParLeastSquareOfTheGradient::Points ( ) const

returns the matrix of points value.

◆ Poles()

const math_Matrix & AppDef_ParLeastSquareOfTheGradient::Poles ( ) const

returns the matrix of resulting control points value.

◆ SearchIndex()

void AppDef_ParLeastSquareOfTheGradient::SearchIndex ( math_IntegerVector & Index)
protected

◆ TheFirstPoint()

int AppDef_ParLeastSquareOfTheGradient::TheFirstPoint ( const AppParCurves_Constraint FirstCons,
const int FirstPoint ) const
protected

returns the first point being fitted.

◆ TheLastPoint()

int AppDef_ParLeastSquareOfTheGradient::TheLastPoint ( const AppParCurves_Constraint LastCons,
const int LastPoint ) const
protected

returns the last point being fitted.


The documentation for this class was generated from the following file: