template<
typename Derived>
struct STK::hidden::Traits< Derived >
,
The traits struct Traits must be specialized for any container derived from the interface classes STK::ITContainer, STK::ITContainer1D and STK::ITContainer2D.
The enumerated values and type names defined in this trait struct are as follow (example taken from the STK::Array1D class)
template<class Type_, int Size_>
{
typedef Type_ Type;
enum
{
structure_ = Arrays::vector_,
orient_ = Arrays::by_col_,
sizeCols_ = 1,
storage_ = Arrays::dense_
};
typedef std::reverse_iterator<Iterator> ReverseIterator;
typedef std::reverse_iterator<ConstIterator> ConstReverseIterator;
};
template one dimensional Arrays.
The MultidimRegression class allows to regress a multidimensional output variable among a multivariat...
- See also
- STK::Array1D, STK::Array2D, STK::CArray, STK::List1D
Definition at line 86 of file STK_ArraysTraits.h.