MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches
MayaFlux::Yantra::EigenMatrixLike Concept Reference

Any Eigen matrix type, regardless of scalar type. More...

#include <DataSpec.hpp>

Concept definition

template<typename T>
concept MayaFlux::Yantra::EigenMatrixLike = is_eigen_matrix_v<T>
Any Eigen matrix type, regardless of scalar type.
Definition DataSpec.hpp:101

Detailed Description

Any Eigen matrix type, regardless of scalar type.

The previous definition gated on Scalar == double, rejecting MatrixXf, Matrix3f, VectorXf, and all other non-double Eigen types. Widening to double for algorithm input is the algorithm's concern, not the concept's.

Definition at line 101 of file DataSpec.hpp.