Theoretica
A C++ numerical and automatic mathematical library
Loading...
Searching...
No Matches
Namespace List
Here is a list of all documented namespaces with brief descriptions:
[detail level 123]
 NthAlias for the theoretica namespace
 NtheoreticaMain namespace of the library which contains all functions and objects
 NalgebraLinear algebra routines
 NautodiffDifferential operators with automatic differentiation
 Cis_dual2_typeType trait to check whether the given type is a multidual number
 Cis_dual2_type< dual2 >Type trait to check whether the given type is a multidual number
 Cis_dual_typeType trait to check whether the given type is a multidual number
 Cis_dual_type< dual >Type trait to check whether the given type is a multidual number
 Cis_multidual_typeType trait to check whether the given type is a multidual number
 Cis_multidual_type< multidual< N > >Type trait to check whether the given type is a multidual number
 NdistributionProbability distribution functions
 NodeNumerical methods for ordinary differential equations
 Code_solution_tThe base type for the solution of an ODE, holding a vector \(t\) of the values of the time (independent variable) and a vector \(\vec x\) of the computed variables of the solution at each instant
 NparallelParallelized element-wise evaluation of functions
 NregressionRegression to a model
 Clinear_modelStructure for computation and storage of least squares linear regression results with model \(y = A + Bx\)
 NsignalSignal processing module
 NspecialSpecial functions
 NstatsStatistical functions
 NtablesTabulated values
 NtaylorTaylor series expansions
 CcomplexComplex number in algebraic form \(a + ib\)
 CdualDual number class
 Cdual2Second order dual number class
 Cextract_func_argsExtract the type of the arguments of a function
 Cextract_func_args< Function(Args...)>
 Chas_type_elementsType trait to check whether an indexable container has elements of the given type
 ChistogramHistogram class with running statistics, can be constructed from the parameters of the bins or from a dataset
 Cis_complex_typeType trait to check whether the given type is a specialization of the complex number class or not, using the static boolean element is_complex_type<T>::value
 Cis_complex_type< complex< T > >Type trait to check whether the given type is a specialization of the complex number class or not, using the static boolean element is_complex_type<T>::value
 Cis_indexableCheck whether a structure is indexable by a single integer index, by checking that it has the operator[](0)
 Cis_indexable< Structure, _internal::void_t< decltype(std::declval< Structure >()[0])> >
 Cis_iterableCheck whether a structure is iterable, by checking that it has a method begin()
 Cis_iterable< Structure, _internal::void_t< decltype(std::declval< Structure >().begin())> >
 Cis_matrixCheck whether a structure is considerable a matrix, by checking that it has an operator(), a rows() method and a cols() method
 Cis_matrix< Structure, _internal::void_t< decltype(std::declval< Structure >()(0, 0)), decltype(std::declval< Structure >().rows()), decltype(std::declval< Structure >().cols())> >
 Cis_orderableCheck whether a structure is orderable, by checking that it has a comparison operator<()
 Cis_orderable< Structure, _internal::void_t< decltype(std::declval< Structure >()< std::declval< Structure >())> >
 Cis_real_typeType trait to check whether a type represents a real number
 Cis_real_type< real >Type trait to check whether a type represents a real number
 Cis_vectorCheck whether a structure is considerable a vector, by checking that it has an operator[] and a size() method
 Cis_vector< Structure, _internal::void_t< decltype(std::declval< Structure >()[0]), decltype(std::declval< Structure >().size())> >
 CmatA generic matrix with a fixed number of rows and columns
 Cmat< Type, 0, 0 >A generic matrix with a variable number of rows and columns
 Cmat_iteratorA sequential iterator for matrices
 CmultidualMultidual number algebra for functions of the form \(f: \mathbb{R}^n \rightarrow \mathbb{R}\)
 Cpdf_samplerA probability density function sampler which generates pseudorandom numbers following asymptotically a given distribution \(f(x; \vec \theta)\)
 CphasorComplex number in exponential form \(\rho e^{i \theta}\)
 CpolynomialA polynomial of arbitrary order
 CPRNGA pseudorandom number generator
 CquatQuaternion class in the form \(a + bi + cj + dk\)
 CratioRepresenting a ratio between two objects, like a fraction or a rational polynomial
 CsplineA natural cubic spline interpolation class
 Cspline_nodeA cubic splines node for a given x interval
 CvecA statically allocated N-dimensional vector with elements of the given type
 Cvec< Type, 0 >
 Cvec_iteratorA sequential iterator for traversing vector-like containers