本文整理汇总了C++中point_type::get_matrix方法的典型用法代码示例。如果您正苦于以下问题:C++ point_type::get_matrix方法的具体用法?C++ point_type::get_matrix怎么用?C++ point_type::get_matrix使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类point_type
的用法示例。
在下文中一共展示了point_type::get_matrix方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: move_position_toward
/**
* Computes the covariance matrix which is the linear interpolation between two matrices, by a fraction.
* \param a The first covariance matrix.
* \param fraction The scalar fraction at which the evaluate the linear interpolation.
* \param b The second covariance matrix.
* \return The interpolated covariance matrix.
*/
point_type move_position_toward(const point_type& a, double fraction, const point_type& b) const {
return point_type(matrix_type(value_type(1.0 - fraction) * a.get_matrix() + value_type(fraction) * b.get_matrix()));
};
示例2: M
point_difference_type(const point_type& aSrc,
const point_type& aDst) :
M(aSrc.get_matrix() - aDst.get_matrix()) { };
示例3: adjust
/**
* Adds a given covariance matrix difference to a given covariance matrix.
* \param a A covariance matrix.
* \param delta A covariance matrix difference to add to a.
* \return The adjusted covariance matrix.
*/
point_type adjust(const point_type& a, const point_difference_type& delta) const {
return point_type(matrix_type( a.get_matrix() + delta.M ));
};