- c -
- c_to_eigen()
: binary_library.cpp
- cast()
: CommonCwiseUnaryOps.h
- cauchy_max_bound()
: PolynomialUtils.h
- cauchy_min_bound()
: PolynomialUtils.h
- CauchyBounds()
: polynomialutils.cpp
- CauchyBounds_scalar()
: polynomialutils.cpp
- caxpy()
: blas.h
- caxpyc()
: blas.h
- ccopy()
: blas.h
- cdiv()
: EigenSolver.h
- cdotc()
: blas.h
- cdotcw()
: blas.h
- cdotu()
: blas.h
- cdotuw()
: blas.h
- cgbmv()
: blas.h
- cge2mm()
: blas.h
- cgema()
: blas.h
- cgemm()
: blas.h
- cgemm3m()
: blas.h
- cgems()
: blas.h
- cgemt()
: blas.h
- cgemv()
: blas.h
- cgerc()
: blas.h
- cgeru()
: blas.h
- cgesv()
: blas.h
- cgetf2()
: blas.h
- cgetrf()
: blas.h
- cgetrs()
: blas.h
- change_mparam()
: dlmalloc.c
- chbmv()
: blas.h
- check_accuracy()
: bench_norm.cpp
- check_accuracy_var()
: bench_norm.cpp
- check_aligned_malloc()
: dynalloc.cpp
, eigen2_dynalloc.cpp
- check_aligned_new()
: dynalloc.cpp
, eigen2_dynalloc.cpp
- check_aligned_stack_alloc()
: dynalloc.cpp
, eigen2_dynalloc.cpp
- check_const_correctness()
: geo_quaternion.cpp
, map.cpp
- check_dynaligned()
: dynalloc.cpp
, eigen2_dynalloc.cpp
- check_fitHyperplane()
: eigen2_regression.cpp
- check_handmade_aligned_malloc()
: dynalloc.cpp
, eigen2_dynalloc.cpp
- check_linearRegression()
: eigen2_regression.cpp
- check_op()
: common.h
- check_product()
: benchBlasGemm.cpp
- check_qtvector_matrix()
: eigen2_qtvector.cpp
, qtvector.cpp
- check_qtvector_quaternion()
: eigen2_qtvector.cpp
, qtvector.cpp
- check_qtvector_transform()
: eigen2_qtvector.cpp
, qtvector.cpp
- check_side()
: common.h
- check_stddeque_matrix()
: stddeque.cpp
- check_stddeque_quaternion()
: stddeque.cpp
- check_stddeque_transform()
: stddeque.cpp
- check_stdlist_matrix()
: stdlist.cpp
- check_stdlist_quaternion()
: stdlist.cpp
- check_stdlist_transform()
: stdlist.cpp
- check_stdvector_matrix()
: eigen2_newstdvector.cpp
, eigen2_stdvector.cpp
, stdvector.cpp
, stdvector_overload.cpp
- check_stdvector_quaternion()
: eigen2_newstdvector.cpp
, eigen2_stdvector.cpp
, stdvector.cpp
, stdvector_overload.cpp
- check_stdvector_transform()
: eigen2_newstdvector.cpp
, eigen2_stdvector.cpp
, stdvector.cpp
, stdvector_overload.cpp
- check_unalignedassert_good()
: eigen2_unalignedassert.cpp
, unalignedassert.cpp
- check_uplo()
: common.h
- chemm()
: blas.h
- chemm3m()
: blas.h
- chemv()
: blas.h
- cher()
: blas.h
- cher2()
: blas.h
- cher2k()
: blas.h
- cher2m()
: blas.h
- cherk()
: blas.h
- cholesky()
: test/cholesky.cpp
, eigen2_cholesky.cpp
- cholesky_cplx()
: test/cholesky.cpp
- cholesky_verify_assert()
: test/cholesky.cpp
- chpmv()
: blas.h
- chpr()
: blas.h
- chpr2()
: blas.h
- claswp()
: blas.h
- clauu2()
: blas.h
- clauum()
: blas.h
- cnorm()
: blas.h
- col()
: BlockMethods.h
, Tutorial_AdvancedInitialization_LinSpaced.cpp
, MatrixBase_col.cpp
, MatrixBase_setRandom.cpp
, Tutorial_AdvancedInitialization_LinSpaced.cpp
, Tutorial_commainit_01b.cpp
- compare_using_data_and_stride()
: block.cpp
- comparisons()
: eigen2_array.cpp
, array.cpp
, array_for_matrix.cpp
- compute()
: Tridiagonalization_compute.cpp
, ComplexEigenSolver_compute.cpp
, ComplexSchur_compute.cpp
, EigenSolver_compute.cpp
, HessenbergDecomposition_compute.cpp
, RealSchur_compute.cpp
, SelfAdjointEigenSolver_compute_MatrixType.cpp
, SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp
- computeRoots()
: eig33.cpp
- conjugate()
: CommonCwiseUnaryOps.h
- contributor_name()
: eigen_gen_credits.cpp
- contributors_map_from_churn_output()
: eigen_gen_credits.cpp
- coo_tocsr()
: sparse_setter.cpp
- copy()
: level1_impl.h
, stable_norm.cpp
- copy_back()
: common.h
- corners()
: corners.cpp
- corners_fixedsize()
: corners.cpp
- cos()
: ArrayCwiseUnaryOps.h
- cout<< "Consider the first eigenvalue, lambda = "<< lambda<< endl;VectorXcd v=es.eigenvectors().col(0);cout<< "If v is the corresponding eigenvector, then lambda * v = "<< endl<< lambda *v<< endl;cout<< "... and A * v = "<< endl<< A.cast< complex< double > >()
: EigenSolver_EigenSolver_MatrixType.cpp
- cout<< "Here is the matrix m:"<< endl<< m<< endl;cout<< "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:"<< endl<< m.diagonal< 1 >()
: MatrixBase_diagonal_template_int.cpp
- cout<< "Here is the vector v:"<< endl<< v<< endl;cout<< "Here is v.head(2):"<< endl<< v.head< 2 >()
: MatrixBase_template_int_start.cpp
- cout<< "Here is the vector v:"<< endl<< v<< endl;cout<< "Here is v.tail(2):"<< endl<< v.tail< 2 >()
: MatrixBase_template_int_end.cpp
- cout<< "Here is, up to permutations, its LU decomposition matrix:"<< endl<< lu.matrixLU()<< endl;cout<< "Here is the L part:"<< endl;Matrix5x5 l=Matrix5x5::Identity();l.block< 5, 3 >()
: class_FullPivLU.cpp
- cout<< "The mapped vector v is: "<< v<< "\n";new(&v) Map< RowVectorXi >()
: Map_placement_new.cpp
- cout<< "The operator norm of the 3x3 matrix of ones is "<< ones.selfadjointView< Lower >()
: SelfAdjointView_operatorNorm.cpp
- cout<< l<< endl;cout<< "Here is the U part:"<< endl;Matrix5x3 u=lu.matrixLU().triangularView< Upper >()
: class_FullPivLU.cpp
- cout<< Map< Matrix3i >()
: Map_simple.cpp
- cout<< Map< MatrixXi, 0, OuterStride<> >()
: Map_outer_stride.cpp
- cout<< Map< MatrixXi, 0, Stride< Dynamic, 2 > >()
: Map_general_stride.cpp
- cout<< Map< VectorXi, 0, InnerStride< 2 > >()
: Map_inner_stride.cpp
- cout<< md+mf.cast< double >()
: MatrixBase_cast.cpp
- cpotf2()
: blas.h
- cpotrf()
: blas.h
- cpotri()
: blas.h
- createShader()
: openglsupport.cpp
- crotg()
: blas.h
- csbmv()
: blas.h
- cscal()
: blas.h
- cspmv()
: blas.h
- cspr()
: blas.h
- cspr2()
: blas.h
- csr_sort_indices()
: sparse_setter.cpp
- csr_sum_duplicates()
: sparse_setter.cpp
- csrot()
: blas.h
- csscal()
: blas.h
- cswap()
: blas.h
- csymm()
: blas.h
- csymm3m()
: blas.h
- csymv()
: blas.h
- csyr()
: blas.h
- csyr2()
: blas.h
- csyr2k()
: blas.h
- csyrk()
: blas.h
- ctbmv()
: blas.h
- ctbsv()
: blas.h
- ctms_decompositions()
: nomalloc.cpp
- ctpmv()
: blas.h
- ctpsv()
: blas.h
- ctrmm()
: blas.h
- ctrmv()
: blas.h
- ctrsm()
: blas.h
- ctrsv()
: blas.h
- ctrti2()
: blas.h
- ctrtri()
: blas.h
- cube()
: ArrayCwiseUnaryOps.h
- cwiseAbs()
: MatrixCwiseUnaryOps.h
- cwiseAbs2()
: MatrixCwiseUnaryOps.h
- cwiseEqual()
: MatrixCwiseBinaryOps.h
, MatrixCwiseUnaryOps.h
- cwiseInverse()
: MatrixCwiseUnaryOps.h
- cwiseMax()
: MatrixCwiseBinaryOps.h
- cwiseMin()
: MatrixCwiseBinaryOps.h
- cwiseNotEqual()
: MatrixCwiseBinaryOps.h
- cwiseops()
: cwiseop.cpp
, eigen2_cwiseop.cpp
- cwiseQuotient()
: MatrixCwiseBinaryOps.h
- cwiseSqrt()
: MatrixCwiseUnaryOps.h
libicr
Author(s): Robert Krug
autogenerated on Mon Jan 6 2014 11:34:39