本文整理汇总了C++中Matrix2::is_true_scalar方法的典型用法代码示例。如果您正苦于以下问题:C++ Matrix2::is_true_scalar方法的具体用法?C++ Matrix2::is_true_scalar怎么用?C++ Matrix2::is_true_scalar使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Matrix2
的用法示例。
在下文中一共展示了Matrix2::is_true_scalar方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: cast_and_apply
void cast_and_apply(Function& f, Matrix1& first, Matrix2& second)
{
typedef typename Matrix2::value_type value_type;
typedef typename Matrix2::dense_type dense_type;
typedef typename Matrix2::sparse_type sparse_type;
typedef typename Matrix2::scalar_type scalar_type;
if (second.is_true_scalar()) { // kanske bara ta in värdet ist
const scalar_type& sc = dynamic_cast<const scalar_type&> (second);
Operator<Function, Matrix1, const scalar_type> op;
op(f, first, sc);
}
else if (second.is_dense()) {
const dense_type& d = dynamic_cast<const dense_type&> (second);
Operator<Function, Matrix1, const dense_type> op;
op(f, first, d);
}
else if (second.is_sparse()) {
const sparse_type& s = dynamic_cast<const sparse_type&> (second);
Operator<Function, Matrix1, const sparse_type> op;
op(f, first, s);
}
else {
Operator<Function, Matrix1, const Matrix2> op;
op(f, first, second);
}
}