├── .gitignore ├── LICENSE ├── README.md ├── exams ├── Midterm01.ipynb ├── Midterm01_Mock.ipynb ├── Midterm01_Mock_Solutions.ipynb ├── Midterm01_Solutions.ipynb ├── Midterm02.ipynb ├── Midterm02_Mock01.ipynb ├── Midterm02_Mock01_Solutions.ipynb ├── Midterm02_Mock02.ipynb ├── Midterm02_Mock02_Solutions.ipynb ├── Midterm02_Solutions.ipynb └── data │ ├── austen-emma.txt │ ├── austen-persuasion.txt │ ├── austen-sense.txt │ ├── bag_of_words.csv │ ├── ecoli.fasta │ ├── iris.png │ ├── milkmaid.png │ ├── pagerank.png │ ├── palindromes.txt │ └── vowel_rich.txt ├── homework ├── HW01_Text.ipynb ├── HW01_Text_Solutions.ipynb ├── HW02_numbers.ipynb ├── HW02_numbers_solutions.ipynb ├── HW03.ipynb ├── HW03_Solutions.ipynb ├── HW04.ipynb ├── HW04_Solutions.ipynb ├── HW05.ipynb ├── HW05_Solutions.ipynb ├── HW06.ipynb ├── HW06_Solutions.ipynb ├── HW07_CPP.ipynb ├── HW07_Soultions.ipynb ├── HW08_Code_Optimization.ipynb ├── HW08_Solutions.ipynb ├── data │ ├── pad.txt │ └── palindromes.txt ├── figs │ ├── 7_1.png │ ├── 7_2.png │ ├── 7_2A.png │ ├── 7_2B.png │ ├── 7_3.png │ ├── 7_4.png │ ├── elephant.jpg │ └── vecs.png └── vecs.png ├── notebook ├── S01_Jupyter_and_Python.ipynb ├── S01_Jupyter_and_Python_Annotated.ipynb ├── S02_Text.ipynb ├── S02_Text_Annotated.ipynb ├── S03A_Scalars.ipynb ├── S03A_Scalars_Annotated.ipynb ├── S03_Numpy.ipynb ├── S03_Numpy_Annotated.ipynb ├── S04A_Using_Pandas_Simple.ipynb ├── S04A_Using_Pandas_Simple_Annotated.ipynb ├── S04_Using_Pandas.ipynb ├── S04_Using_Pandas_Annotated.ipynb ├── S05_Graphics.ipynb ├── S05_Graphics_Annotated.ipynb ├── S06_Functional.ipynb ├── S06_Functional_Annotated.ipynb ├── S07A_Algorithms.ipynb ├── S07B_Vectors_Annotated.ipynb ├── S07C_Matrices_Annotated.ipynb ├── S07D_Sparse_Matrices_Annotated.ipynb ├── S08A_Matrices_Linear_Combinations_Annotated.ipynb ├── S08B_Sovling_Linear_Equations_Annotated.ipynb ├── S08C_Least_Squares.ipynb ├── S08D_PCA.ipynb ├── S08E_SVD.ipynb ├── S08F_LinearAlgebraExamples.ipynb ├── S08_Linear_Algebra_Review.ipynb ├── S09A_Root_Finding.ipynb ├── S09B_Optimization.ipynb ├── S09C_Optimization_Algorithms.ipynb ├── S09D_Optimization_Examples.ipynb ├── S09E_Optimization_Line_Search.ipynb ├── S09F_Least_Squares_Optimization.ipynb ├── S09G_Gradient_Descent_Optimization.ipynb ├── S09H_Constrained_Optimization.ipynb ├── S10A_Dimension_Reduction_PCA.ipynb ├── S10B_Dimension_Reduction_Nonlinear.ipynb ├── S11_Clustering.ipynb ├── S12A_CPP_Mechanics.ipynb ├── S12B_C.ipynb ├── S12C_CPP.ipynb ├── S13A_pybind11.ipynb ├── S13B_Cython.ipynb ├── S13C_Numba.ipynb ├── S13D_Native_Code_Compilation_Recap.ipynb ├── S14A_Probabilisitc_Programming_Background.ipynb ├── S14B_Random_Variables.ipynb ├── S14C_Monte_Carlo_Methods.ipynb ├── S14D_Monte_Carlo_Integration.ipynb ├── S14E_MarkovChains.ipynb ├── S14F_MCMC.ipynb ├── S14G_HMC.ipynb ├── S14H_Deterministic_Methods_Brief_Notes.ipynb ├── S14I_Model_Evaluation.ipynb ├── S14_Probabilistic_Programming.ipynb ├── S15A_PyMC3.ipynb ├── S15B_PyMC3.ipynb ├── S15C_PyMC3.ipynb ├── S15D_PyMC3.ipynb ├── S15E_PyStan.ipynb ├── S16A_TF1.ipynb ├── S16B_TF2.ipynb ├── S16_TF.ipynb ├── T01_Warm_Up_Exercises.ipynb ├── T01_Warm_Up_Exercises_Solutions.ipynb ├── T02_Exercises.ipynb ├── T02_Exercises_Solutions.ipynb ├── T03_Exercises.ipynb ├── T03_Exercises_Solutions.ipynb ├── T04_Exercises.ipynb ├── T04_Exercises_Solutions.ipynb ├── T05_Exercises.ipynb ├── T05_Exercises_Solutions.ipynb ├── T06_Exercises.ipynb ├── T06_Exercises_Partial_Solutions.ipynb ├── T07_Exercises.ipynb ├── T07_Optimization_Examples.ipynb ├── T08_PCA_SVD_Dimension_Reductioon.ipynb ├── T09_C.ipynb ├── T09_C_Solutions.ipynb ├── bias.png ├── data │ ├── HtWt.csv │ ├── airports.csv │ ├── names.csv │ └── radon.csv ├── dna.fasta ├── eigen │ ├── .hg │ │ ├── 00changelog.i │ │ ├── branch │ │ ├── cache │ │ │ ├── branch2-served │ │ │ ├── checkisexec │ │ │ ├── checklink │ │ │ ├── checklink-target │ │ │ ├── hgtagsfnodes1 │ │ │ ├── rbc-names-v1 │ │ │ └── rbc-revs-v1 │ │ ├── dirstate │ │ ├── hgrc │ │ ├── requires │ │ ├── store │ │ │ ├── 00changelog.d │ │ │ ├── 00changelog.i │ │ │ ├── 00manifest.d │ │ │ ├── 00manifest.i │ │ │ ├── data │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ ├── _c_make_lists__mkl.txt.i │ │ │ │ ├── _c_o_p_y_i_n_g._b_s_d.i │ │ │ │ ├── _c_o_p_y_i_n_g._g_p_l.i │ │ │ │ ├── _c_o_p_y_i_n_g._l_e_s_s_e_r.i │ │ │ │ ├── _c_o_p_y_i_n_g._l_g_p_l.i │ │ │ │ ├── _c_o_p_y_i_n_g._m_i_n_p_a_c_k.i │ │ │ │ ├── _c_o_p_y_i_n_g._m_p_l2.i │ │ │ │ ├── _c_o_p_y_i_n_g._r_e_a_d_m_e.i │ │ │ │ ├── _c_o_p_y_i_n_g.i │ │ │ │ ├── _c_test_config.cmake.i │ │ │ │ ├── _c_test_custom.cmake.in.i │ │ │ │ ├── _doxyfile.i │ │ │ │ ├── _doxyfile.in.i │ │ │ │ ├── _eigen │ │ │ │ │ ├── _array.i │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── _cholesky.i │ │ │ │ │ ├── _cholmod_support.i │ │ │ │ │ ├── _core.h.i │ │ │ │ │ ├── _core.i │ │ │ │ │ ├── _core │ │ │ │ │ │ ├── _block.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cast.h.i │ │ │ │ │ │ ├── _coeffs.h.i │ │ │ │ │ │ ├── _column.h.i │ │ │ │ │ │ ├── _conjugate.h.i │ │ │ │ │ │ ├── _diagonal_coeffs.h.i │ │ │ │ │ │ ├── _diagonal_matrix.h.i │ │ │ │ │ │ ├── _difference.h.i │ │ │ │ │ │ ├── _dot.h.i │ │ │ │ │ │ ├── _dyn_block.h.i │ │ │ │ │ │ ├── _eval.h.i │ │ │ │ │ │ ├── _fuzzy.h.i │ │ │ │ │ │ ├── _i_o.h.i │ │ │ │ │ │ ├── _identity.h.i │ │ │ │ │ │ ├── _map.h.i │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ │ ├── _matrix_base.h.i │ │ │ │ │ │ ├── _matrix_ref.h.i │ │ │ │ │ │ ├── _matrix_storage.h.i │ │ │ │ │ │ ├── _minor.h.i │ │ │ │ │ │ ├── _num_traits.h.i │ │ │ │ │ │ ├── _ones.h.i │ │ │ │ │ │ ├── _operator_equals.h.i │ │ │ │ │ │ ├── _opposite.h.i │ │ │ │ │ │ ├── _product.h.i │ │ │ │ │ │ ├── _random.h.i │ │ │ │ │ │ ├── _row.h.i │ │ │ │ │ │ ├── _scalar_multiple.h.i │ │ │ │ │ │ ├── _sum.h.i │ │ │ │ │ │ ├── _trace.h.i │ │ │ │ │ │ ├── _transpose.h.i │ │ │ │ │ │ ├── _util.h.i │ │ │ │ │ │ └── _zero.h.i │ │ │ │ │ ├── _core_declarations.i │ │ │ │ │ ├── _dense.i │ │ │ │ │ ├── _eigen.i │ │ │ │ │ ├── _eigen2_support.i │ │ │ │ │ ├── _eigen_solver.i │ │ │ │ │ ├── _eigenvalues.i │ │ │ │ │ ├── _geometry.i │ │ │ │ │ ├── _householder.i │ │ │ │ │ ├── _iterative_linear_solvers.i │ │ │ │ │ ├── _jacobi.i │ │ │ │ │ ├── _k_l_u_support.i │ │ │ │ │ ├── _l_u.i │ │ │ │ │ ├── _least_squares.i │ │ │ │ │ ├── _levenberg_marquardt.i │ │ │ │ │ ├── _metis_support.i │ │ │ │ │ ├── _new_std_vector.i │ │ │ │ │ ├── _ordering_methods.i │ │ │ │ │ ├── _p_a_r_d_i_s_o_support.i │ │ │ │ │ ├── _pa_sti_x_support.i │ │ │ │ │ ├── _pardiso_support.i │ │ │ │ │ ├── _q_r.i │ │ │ │ │ ├── _qt_aligned_malloc.i │ │ │ │ │ ├── _regression.i │ │ │ │ │ ├── _s_p_q_r_support.i │ │ │ │ │ ├── _s_v_d.i │ │ │ │ │ ├── _skyline.i │ │ │ │ │ ├── _sparse.i │ │ │ │ │ ├── _sparse_cholesky.i │ │ │ │ │ ├── _sparse_core.i │ │ │ │ │ ├── _sparse_l_u.i │ │ │ │ │ ├── _sparse_q_r.i │ │ │ │ │ ├── _std_deque.i │ │ │ │ │ ├── _std_list.i │ │ │ │ │ ├── _std_vector.i │ │ │ │ │ ├── _super_l_u_support.i │ │ │ │ │ ├── _umf_pack_support.i │ │ │ │ │ ├── signature__of__eigen3__matrix__library.i │ │ │ │ │ └── src │ │ │ │ │ │ ├── _array │ │ │ │ │ │ ├── _all_and_any.h.i │ │ │ │ │ │ ├── _array.h.i │ │ │ │ │ │ ├── _array_base.h.i │ │ │ │ │ │ ├── _array_wrapper.h.i │ │ │ │ │ │ ├── _boolean_redux.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cwise_operators.h.i │ │ │ │ │ │ ├── _functors.h.i │ │ │ │ │ │ ├── _global_functions.h.i │ │ │ │ │ │ ├── _norms.h.i │ │ │ │ │ │ ├── _partial_redux.h.i │ │ │ │ │ │ ├── _random.h.i │ │ │ │ │ │ ├── _replicate.h.i │ │ │ │ │ │ ├── _reverse.h.i │ │ │ │ │ │ ├── _select.h.i │ │ │ │ │ │ └── _vectorwise_op.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cholesky │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cholesky.h.i │ │ │ │ │ │ ├── _cholesky_instantiations.cpp.i │ │ │ │ │ │ ├── _cholesky_without_square_root.h.i │ │ │ │ │ │ ├── _l_d_l_t.h.i │ │ │ │ │ │ ├── _l_l_t.h.i │ │ │ │ │ │ ├── _l_l_t___l_a_p_a_c_k_e.h.i │ │ │ │ │ │ └── _l_l_t___m_k_l.h.i │ │ │ │ │ │ ├── _cholmod_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _cholmod_support.h.i │ │ │ │ │ │ ├── _core │ │ │ │ │ │ ├── _any_matrix_base.h.i │ │ │ │ │ │ ├── _arithmetic_sequence.h.i │ │ │ │ │ │ ├── _array.h.i │ │ │ │ │ │ ├── _array_base.h.i │ │ │ │ │ │ ├── _array_wrapper.h.i │ │ │ │ │ │ ├── _assign.h.i │ │ │ │ │ │ ├── _assign___m_k_l.h.i │ │ │ │ │ │ ├── _assign_evaluator.h.i │ │ │ │ │ │ ├── _associative_functors.h.i │ │ │ │ │ │ ├── _band_matrix.h.i │ │ │ │ │ │ ├── _block.h.i │ │ │ │ │ │ ├── _boolean_redux.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cache_friendly_product.h.i │ │ │ │ │ │ ├── _cast.h.i │ │ │ │ │ │ ├── _coeffs.h.i │ │ │ │ │ │ ├── _column.h.i │ │ │ │ │ │ ├── _comma_initializer.h.i │ │ │ │ │ │ ├── _condition_estimator.h.i │ │ │ │ │ │ ├── _conjugate.h.i │ │ │ │ │ │ ├── _core_evaluators.h.i │ │ │ │ │ │ ├── _core_instanciations.cpp.i │ │ │ │ │ │ ├── _core_instantiations.cpp.i │ │ │ │ │ │ ├── _core_iterators.h.i │ │ │ │ │ │ ├── _cwise.h.i │ │ │ │ │ │ ├── _cwise_binary_op.h.i │ │ │ │ │ │ ├── _cwise_binary_ops.h.i │ │ │ │ │ │ ├── _cwise_nullary_op.h.i │ │ │ │ │ │ ├── _cwise_ternary_op.h.i │ │ │ │ │ │ ├── _cwise_unary_op.h.i │ │ │ │ │ │ ├── _cwise_unary_ops.h.i │ │ │ │ │ │ ├── _cwise_unary_view.h.i │ │ │ │ │ │ ├── _dense_base.h.i │ │ │ │ │ │ ├── _dense_coeffs_base.h.i │ │ │ │ │ │ ├── _dense_direct_access_base.h.i │ │ │ │ │ │ ├── _dense_storage.h.i │ │ │ │ │ │ ├── _dense_storage_base.h.i │ │ │ │ │ │ ├── _diagonal.h.i │ │ │ │ │ │ ├── _diagonal_coeffs.h.i │ │ │ │ │ │ ├── _diagonal_matrix.h.i │ │ │ │ │ │ ├── _diagonal_product.h.i │ │ │ │ │ │ ├── _difference.h.i │ │ │ │ │ │ ├── _dot.h.i │ │ │ │ │ │ ├── _dummy_packet_math.h.i │ │ │ │ │ │ ├── _dyn_block.h.i │ │ │ │ │ │ ├── _eigen_base.h.i │ │ │ │ │ │ ├── _eval.h.i │ │ │ │ │ │ ├── _eval_o_m_p.h.i │ │ │ │ │ │ ├── _expression_maker.h.i │ │ │ │ │ │ ├── _extract.h.i │ │ │ │ │ │ ├── _fixed_block.h.i │ │ │ │ │ │ ├── _flagged.h.i │ │ │ │ │ │ ├── _force_aligned_access.h.i │ │ │ │ │ │ ├── _forward_declarations.h.i │ │ │ │ │ │ ├── _functors.h.i │ │ │ │ │ │ ├── _fuzzy.h.i │ │ │ │ │ │ ├── _general_product.h.i │ │ │ │ │ │ ├── _generic_packet_math.h.i │ │ │ │ │ │ ├── _global_functions.h.i │ │ │ │ │ │ ├── _i_o.h.i │ │ │ │ │ │ ├── _identity.h.i │ │ │ │ │ │ ├── _indexed_view.h.i │ │ │ │ │ │ ├── _inverse.h.i │ │ │ │ │ │ ├── _inverse_product.h.i │ │ │ │ │ │ ├── _lazy.h.i │ │ │ │ │ │ ├── _map.h.i │ │ │ │ │ │ ├── _map_base.h.i │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ ├── _math_functions_impl.h.i │ │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ │ ├── _matrix_base.h.i │ │ │ │ │ │ ├── _matrix_ref.h.i │ │ │ │ │ │ ├── _matrix_storage.h.i │ │ │ │ │ │ ├── _minor.h.i │ │ │ │ │ │ ├── _nest_by_value.h.i │ │ │ │ │ │ ├── _no_alias.h.i │ │ │ │ │ │ ├── _num_traits.h.i │ │ │ │ │ │ ├── _ones.h.i │ │ │ │ │ │ ├── _operator_equals.h.i │ │ │ │ │ │ ├── _opposite.h.i │ │ │ │ │ │ ├── _packet_math.h.i │ │ │ │ │ │ ├── _packet_math___altivec.h.i │ │ │ │ │ │ ├── _packet_math___s_s_e.h.i │ │ │ │ │ │ ├── _part.h.i │ │ │ │ │ │ ├── _partial_redux_evaluator.h.i │ │ │ │ │ │ ├── _permutation_matrix.h.i │ │ │ │ │ │ ├── _plain_object_base.h.i │ │ │ │ │ │ ├── _prod.h.i │ │ │ │ │ │ ├── _product.h.d │ │ │ │ │ │ ├── _product.h.i │ │ │ │ │ │ ├── _product_base.h.i │ │ │ │ │ │ ├── _product_evaluators.h.i │ │ │ │ │ │ ├── _product_w_i_p.h.i │ │ │ │ │ │ ├── _random.h.i │ │ │ │ │ │ ├── _redux.h.i │ │ │ │ │ │ ├── _ref.h.i │ │ │ │ │ │ ├── _replicate.h.i │ │ │ │ │ │ ├── _reshape.h.i │ │ │ │ │ │ ├── _reshaped.h.i │ │ │ │ │ │ ├── _return_by_value.h.i │ │ │ │ │ │ ├── _reverse.h.i │ │ │ │ │ │ ├── _row.h.i │ │ │ │ │ │ ├── _scalar_multiple.h.i │ │ │ │ │ │ ├── _select.h.i │ │ │ │ │ │ ├── _self_adjoint_view.h.i │ │ │ │ │ │ ├── _self_cwise_binary_op.h.i │ │ │ │ │ │ ├── _solve.h.i │ │ │ │ │ │ ├── _solve_triangular.h.i │ │ │ │ │ │ ├── _solver_base.h.i │ │ │ │ │ │ ├── _special_functions.h.i │ │ │ │ │ │ ├── _stable_norm.h.i │ │ │ │ │ │ ├── _stl_iterators.h.i │ │ │ │ │ │ ├── _stride.h.i │ │ │ │ │ │ ├── _sum.h.i │ │ │ │ │ │ ├── _sum_of_coeffs.h.i │ │ │ │ │ │ ├── _swap.h.i │ │ │ │ │ │ ├── _temporary.h.i │ │ │ │ │ │ ├── _trace.h.i │ │ │ │ │ │ ├── _transpose.h.i │ │ │ │ │ │ ├── _transpositions.h.i │ │ │ │ │ │ ├── _triangular.h.i │ │ │ │ │ │ ├── _triangular_assign.h.i │ │ │ │ │ │ ├── _triangular_matrix.h.i │ │ │ │ │ │ ├── _util.h.i │ │ │ │ │ │ ├── _vector_block.h.i │ │ │ │ │ │ ├── _vectorwise_op.h.i │ │ │ │ │ │ ├── _visitor.h.i │ │ │ │ │ │ ├── _zero.h.i │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ ├── _a_v_x │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _complex.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ ├── _packet_math.h.i │ │ │ │ │ │ │ │ └── _type_casting.h.i │ │ │ │ │ │ │ ├── _a_v_x512 │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _complex.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ └── _packet_math.h.i │ │ │ │ │ │ │ ├── _alti_vec │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _complex.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ └── _packet_math.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _c_u_d_a │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _complex.h.i │ │ │ │ │ │ │ │ ├── _half.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ ├── _packet_math.h.i │ │ │ │ │ │ │ │ ├── _packet_math_half.h.i │ │ │ │ │ │ │ │ └── _type_casting.h.i │ │ │ │ │ │ │ ├── _default │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _conj_helper.h.i │ │ │ │ │ │ │ │ ├── _generic_packet_math_functions.h.i │ │ │ │ │ │ │ │ └── _settings.h.i │ │ │ │ │ │ │ ├── _g_p_u │ │ │ │ │ │ │ │ ├── _half.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ ├── _packet_math.h.i │ │ │ │ │ │ │ │ ├── _packet_math_half.h.i │ │ │ │ │ │ │ │ └── _type_casting.h.i │ │ │ │ │ │ │ ├── _h_i_p │ │ │ │ │ │ │ │ └── hcc │ │ │ │ │ │ │ │ │ ├── _half.h.i │ │ │ │ │ │ │ │ │ ├── _packet_math_half.h.i │ │ │ │ │ │ │ │ │ ├── _type_casting.h.i │ │ │ │ │ │ │ │ │ └── math__constants.h.i │ │ │ │ │ │ │ ├── _m_s_a │ │ │ │ │ │ │ │ ├── _complex.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ └── _packet_math.h.i │ │ │ │ │ │ │ ├── _n_e_o_n │ │ │ │ │ │ │ │ ├── _blocking_sizes_lookup_tables.h.i │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _complex.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ ├── _packet_math.h.i │ │ │ │ │ │ │ │ └── _type_casting.h.i │ │ │ │ │ │ │ ├── _s_s_e │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _complex.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ ├── _packet_math.h.i │ │ │ │ │ │ │ │ ├── _transcendental_functions.h.i │ │ │ │ │ │ │ │ └── _type_casting.h.i │ │ │ │ │ │ │ ├── _s_y_c_l │ │ │ │ │ │ │ │ ├── _interop_headers.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ ├── _packet_math.h.i │ │ │ │ │ │ │ │ └── _type_casting.h.i │ │ │ │ │ │ │ └── _z_vector │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _complex.h.i │ │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ │ └── _packet_math.h.i │ │ │ │ │ │ ├── functors │ │ │ │ │ │ │ ├── _assignment_functors.h.i │ │ │ │ │ │ │ ├── _binary_functors.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _nullary_functors.h.i │ │ │ │ │ │ │ ├── _stl_functors.h.i │ │ │ │ │ │ │ ├── _ternary_functors.h.i │ │ │ │ │ │ │ └── _unary_functors.h.i │ │ │ │ │ │ ├── products │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _coeff_based_product.h.i │ │ │ │ │ │ │ ├── _general_block_panel_kernel.h.i │ │ │ │ │ │ │ ├── _general_coeff_based.h.i │ │ │ │ │ │ │ ├── _general_matrix_matrix.h.i │ │ │ │ │ │ │ ├── _general_matrix_matrix___b_l_a_s.h.i │ │ │ │ │ │ │ ├── _general_matrix_matrix___m_k_l.h.i │ │ │ │ │ │ │ ├── _general_matrix_matrix_triangular.h.i │ │ │ │ │ │ │ ├── _general_matrix_matrix_triangular___b_l_a_s.h.i │ │ │ │ │ │ │ ├── _general_matrix_matrix_triangular___m_k_l.h.i │ │ │ │ │ │ │ ├── _general_matrix_vector.h.i │ │ │ │ │ │ │ ├── _general_matrix_vector___b_l_a_s.h.i │ │ │ │ │ │ │ ├── _general_matrix_vector___m_k_l.h.i │ │ │ │ │ │ │ ├── _general_unrolled.h.i │ │ │ │ │ │ │ ├── _lookup_blocking_sizes_table.h.i │ │ │ │ │ │ │ ├── _parallelizer.h.i │ │ │ │ │ │ │ ├── _rotation_in_the_plane.h.i │ │ │ │ │ │ │ ├── _selfadjoint_matrix_matrix.h.i │ │ │ │ │ │ │ ├── _selfadjoint_matrix_matrix___b_l_a_s.h.i │ │ │ │ │ │ │ ├── _selfadjoint_matrix_matrix___m_k_l.h.i │ │ │ │ │ │ │ ├── _selfadjoint_matrix_vector.h.i │ │ │ │ │ │ │ ├── _selfadjoint_matrix_vector___b_l_a_s.h.i │ │ │ │ │ │ │ ├── _selfadjoint_matrix_vector___m_k_l.h.i │ │ │ │ │ │ │ ├── _selfadjoint_product.h.i │ │ │ │ │ │ │ ├── _selfadjoint_rank2_update.h.i │ │ │ │ │ │ │ ├── _triangular_matrix_matrix.h.i │ │ │ │ │ │ │ ├── _triangular_matrix_matrix___b_l_a_s.h.i │ │ │ │ │ │ │ ├── _triangular_matrix_matrix___m_k_l.h.i │ │ │ │ │ │ │ ├── _triangular_matrix_vector.h.i │ │ │ │ │ │ │ ├── _triangular_matrix_vector___b_l_a_s.h.i │ │ │ │ │ │ │ ├── _triangular_matrix_vector___m_k_l.h.i │ │ │ │ │ │ │ ├── _triangular_solver_matrix.h.i │ │ │ │ │ │ │ ├── _triangular_solver_matrix___b_l_a_s.h.i │ │ │ │ │ │ │ ├── _triangular_solver_matrix___m_k_l.h.i │ │ │ │ │ │ │ └── _triangular_solver_vector.h.i │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── _blas_util.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _configure_vectorization.h.i │ │ │ │ │ │ │ ├── _constants.h.i │ │ │ │ │ │ │ ├── _disable_m_s_v_c_warnings.h.i │ │ │ │ │ │ │ ├── _disable_stupid_warnings.h.i │ │ │ │ │ │ │ ├── _enable_m_s_v_c_warnings.h.i │ │ │ │ │ │ │ ├── _forward_declarations.h.i │ │ │ │ │ │ │ ├── _indexed_view_helper.h.i │ │ │ │ │ │ │ ├── _integral_constant.h.i │ │ │ │ │ │ │ ├── _m_k_l__support.h.i │ │ │ │ │ │ │ ├── _macros.h.d │ │ │ │ │ │ │ ├── _macros.h.i │ │ │ │ │ │ │ ├── _memory.h.d │ │ │ │ │ │ │ ├── _memory.h.i │ │ │ │ │ │ │ ├── _meta.h.i │ │ │ │ │ │ │ ├── _non_m_p_l2.h.i │ │ │ │ │ │ │ ├── _reenable_stupid_warnings.h.i │ │ │ │ │ │ │ ├── _reshaped_helper.h.i │ │ │ │ │ │ │ ├── _static_assert.h.i │ │ │ │ │ │ │ ├── _symbolic_index.h.i │ │ │ │ │ │ │ ├── _util.h.i │ │ │ │ │ │ │ └── _xpr_helper.h.i │ │ │ │ │ │ ├── _eigen2_support │ │ │ │ │ │ ├── _block.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cwise.h.i │ │ │ │ │ │ ├── _cwise_operators.h.i │ │ │ │ │ │ ├── _flagged.h.i │ │ │ │ │ │ ├── _geometry │ │ │ │ │ │ │ ├── _aligned_box.h.i │ │ │ │ │ │ │ ├── _all.h.i │ │ │ │ │ │ │ ├── _angle_axis.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _hyperplane.h.i │ │ │ │ │ │ │ ├── _parametrized_line.h.i │ │ │ │ │ │ │ ├── _quaternion.h.i │ │ │ │ │ │ │ ├── _rotation2_d.h.i │ │ │ │ │ │ │ ├── _rotation_base.h.i │ │ │ │ │ │ │ ├── _scaling.h.i │ │ │ │ │ │ │ ├── _transform.h.i │ │ │ │ │ │ │ └── _translation.h.i │ │ │ │ │ │ ├── _l_u.h.i │ │ │ │ │ │ ├── _lazy.h.i │ │ │ │ │ │ ├── _least_squares.h.i │ │ │ │ │ │ ├── _macros.h.i │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ ├── _memory.h.i │ │ │ │ │ │ ├── _meta.h.i │ │ │ │ │ │ ├── _minor.h.i │ │ │ │ │ │ ├── _q_r.h.i │ │ │ │ │ │ ├── _s_v_d.h.i │ │ │ │ │ │ ├── _transform.h.i │ │ │ │ │ │ ├── _triangular_solver.h.i │ │ │ │ │ │ └── _vector_block.h.i │ │ │ │ │ │ ├── _eigen_solver │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _complex_eigen_solver.h.i │ │ │ │ │ │ ├── _complex_schur.h.i │ │ │ │ │ │ ├── _eigen_solver.h.i │ │ │ │ │ │ ├── _hessenberg_decomposition.h.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver.h.i │ │ │ │ │ │ └── _tridiagonalization.h.i │ │ │ │ │ │ ├── _eigenvalues │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _complex_eigen_solver.h.i │ │ │ │ │ │ ├── _complex_schur.h.i │ │ │ │ │ │ ├── _complex_schur___l_a_p_a_c_k_e.h.i │ │ │ │ │ │ ├── _complex_schur___m_k_l.h.i │ │ │ │ │ │ ├── _eigen_solver.h.i │ │ │ │ │ │ ├── _eigenvalues_common.h.i │ │ │ │ │ │ ├── _generalized_eigen_solver.h.i │ │ │ │ │ │ ├── _generalized_self_adjoint_eigen_solver.h.i │ │ │ │ │ │ ├── _hessenberg_decomposition.h.i │ │ │ │ │ │ ├── _matrix_base_eigenvalues.h.i │ │ │ │ │ │ ├── _real_q_z.h.i │ │ │ │ │ │ ├── _real_schur.h.i │ │ │ │ │ │ ├── _real_schur___l_a_p_a_c_k_e.h.i │ │ │ │ │ │ ├── _real_schur___m_k_l.h.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver.h.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver___l_a_p_a_c_k_e.h.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver___m_k_l.h.i │ │ │ │ │ │ └── _tridiagonalization.h.i │ │ │ │ │ │ ├── _geometry │ │ │ │ │ │ ├── _aligned_box.h.i │ │ │ │ │ │ ├── _angle_axis.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cross.h.i │ │ │ │ │ │ ├── _euler_angles.h.i │ │ │ │ │ │ ├── _homogeneous.h.i │ │ │ │ │ │ ├── _hyper_plane.h.i │ │ │ │ │ │ ├── _hyperplane.h.i │ │ │ │ │ │ ├── _ortho_methods.h.i │ │ │ │ │ │ ├── _parametrized_line.h.i │ │ │ │ │ │ ├── _quaternion.h.i │ │ │ │ │ │ ├── _rotation.h.i │ │ │ │ │ │ ├── _rotation2_d.h.i │ │ │ │ │ │ ├── _rotation_base.h.i │ │ │ │ │ │ ├── _scaling.h.i │ │ │ │ │ │ ├── _transform.h.i │ │ │ │ │ │ ├── _translation.h.i │ │ │ │ │ │ ├── _umeyama.h.i │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ └── _geometry___s_s_e.h.i │ │ │ │ │ │ ├── _householder │ │ │ │ │ │ ├── _block_householder.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _householder.h.i │ │ │ │ │ │ └── _householder_sequence.h.i │ │ │ │ │ │ ├── _iterative_linear_solvers │ │ │ │ │ │ ├── _basic_preconditioners.h.i │ │ │ │ │ │ ├── _bi_c_g_s_t_a_b.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _conjugate_gradient.h.i │ │ │ │ │ │ ├── _incomplete_cholesky.h.i │ │ │ │ │ │ ├── _incomplete_l_u_t.h.i │ │ │ │ │ │ ├── _iterative_solver_base.h.i │ │ │ │ │ │ ├── _least_square_conjugate_gradient.h.i │ │ │ │ │ │ ├── _m_i_n_r_e_s.h.i │ │ │ │ │ │ └── _solve_with_guess.h.i │ │ │ │ │ │ ├── _jacobi │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _jacobi.h.i │ │ │ │ │ │ ├── _k_l_u_support │ │ │ │ │ │ └── _k_l_u_support.h.i │ │ │ │ │ │ ├── _l_u │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _determinant.h.i │ │ │ │ │ │ ├── _full_piv_l_u.h.i │ │ │ │ │ │ ├── _inverse.h.i │ │ │ │ │ │ ├── _inverse_impl.h.i │ │ │ │ │ │ ├── _l_u.h.i │ │ │ │ │ │ ├── _partial_l_u.h.i │ │ │ │ │ │ ├── _partial_piv_l_u.h.i │ │ │ │ │ │ ├── _partial_piv_l_u___l_a_p_a_c_k_e.h.i │ │ │ │ │ │ ├── _partial_piv_l_u___m_k_l.h.i │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ └── _inverse___s_s_e.h.i │ │ │ │ │ │ ├── _least_squares │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _least_squares.h.i │ │ │ │ │ │ ├── _levenberg_marquardt │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _copyright_m_i_n_p_a_c_k.txt.i │ │ │ │ │ │ ├── _l_mcovar.h.i │ │ │ │ │ │ ├── _l_monestep.h.i │ │ │ │ │ │ ├── _l_mpar.h.i │ │ │ │ │ │ ├── _l_mqrsolv.h.i │ │ │ │ │ │ ├── _levenberg_marquardt.h.i │ │ │ │ │ │ └── covar.h.i │ │ │ │ │ │ ├── _metis_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _metis_support.h.i │ │ │ │ │ │ ├── _ordering_methods │ │ │ │ │ │ ├── _amd.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _eigen___colamd.h.i │ │ │ │ │ │ └── _ordering.h.i │ │ │ │ │ │ ├── _p_a_r_d_i_s_o_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _p_a_r_d_i_s_o_support.h.i │ │ │ │ │ │ ├── _pa_sti_x_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _pa_sti_x_support.h.i │ │ │ │ │ │ ├── _pardiso_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _pardiso_support.h.i │ │ │ │ │ │ ├── _q_r │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _col_piv_householder_q_r.h.i │ │ │ │ │ │ ├── _col_piv_householder_q_r___l_a_p_a_c_k_e.h.i │ │ │ │ │ │ ├── _col_piv_householder_q_r___m_k_l.h.i │ │ │ │ │ │ ├── _col_pivoting_householder_q_r.h.i │ │ │ │ │ │ ├── _complete_orthogonal_decomposition.h.i │ │ │ │ │ │ ├── _complex_eigen_solver.h.i │ │ │ │ │ │ ├── _complex_schur.h.i │ │ │ │ │ │ ├── _eigen_solver.h.i │ │ │ │ │ │ ├── _full_piv_householder_q_r.h.i │ │ │ │ │ │ ├── _full_pivoting_householder_q_r.h.i │ │ │ │ │ │ ├── _hessenberg_decomposition.h.i │ │ │ │ │ │ ├── _householder_q_r.h.i │ │ │ │ │ │ ├── _householder_q_r___l_a_p_a_c_k_e.h.i │ │ │ │ │ │ ├── _householder_q_r___m_k_l.h.i │ │ │ │ │ │ ├── _q_r.h.i │ │ │ │ │ │ ├── _qr_instanciations.cpp.i │ │ │ │ │ │ ├── _qr_instantiations.cpp.i │ │ │ │ │ │ ├── _r_r_q_r.h.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver.h.i │ │ │ │ │ │ └── _tridiagonalization.h.i │ │ │ │ │ │ ├── _regression │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _regression.h.i │ │ │ │ │ │ ├── _s_p_q_r_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _suite_sparse_q_r_support.h.i │ │ │ │ │ │ ├── _s_v_d │ │ │ │ │ │ ├── _b_d_c_s_v_d.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _jacobi_s_v_d.h.i │ │ │ │ │ │ ├── _jacobi_s_v_d___l_a_p_a_c_k_e.h.i │ │ │ │ │ │ ├── _jacobi_s_v_d___m_k_l.h.i │ │ │ │ │ │ ├── _jacobi_square_s_v_d.h.i │ │ │ │ │ │ ├── _s_v_d.h.i │ │ │ │ │ │ ├── _s_v_d_base.h.i │ │ │ │ │ │ └── _upper_bidiagonalization.h.i │ │ │ │ │ │ ├── _skyline │ │ │ │ │ │ ├── _skyline_inplace_l_u.h.i │ │ │ │ │ │ ├── _skyline_matrix.h.i │ │ │ │ │ │ ├── _skyline_matrix_base.h.i │ │ │ │ │ │ ├── _skyline_product.h.i │ │ │ │ │ │ ├── _skyline_storage.h.i │ │ │ │ │ │ └── _skyline_util.h.i │ │ │ │ │ │ ├── _sparse │ │ │ │ │ │ ├── _ambi_vector.h.i │ │ │ │ │ │ ├── _basic_sparse_cholesky.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cholmod_support.h.i │ │ │ │ │ │ ├── _compressed_storage.h.i │ │ │ │ │ │ ├── _conservative_sparse_sparse_product.h.i │ │ │ │ │ │ ├── _core_iterators.h.i │ │ │ │ │ │ ├── _dynamic_sparse_matrix.h.i │ │ │ │ │ │ ├── _hash_matrix.h.i │ │ │ │ │ │ ├── _linked_vector_matrix.h.i │ │ │ │ │ │ ├── _mapped_sparse_matrix.h.i │ │ │ │ │ │ ├── _random_setter.h.i │ │ │ │ │ │ ├── _sparse_array.h.i │ │ │ │ │ │ ├── _sparse_assign.h.i │ │ │ │ │ │ ├── _sparse_block.h.i │ │ │ │ │ │ ├── _sparse_cholesky.h.i │ │ │ │ │ │ ├── _sparse_cwise.h.i │ │ │ │ │ │ ├── _sparse_cwise_binary_op.h.i │ │ │ │ │ │ ├── _sparse_cwise_unary_op.h.i │ │ │ │ │ │ ├── _sparse_dense_product.h.i │ │ │ │ │ │ ├── _sparse_diagonal_product.h.i │ │ │ │ │ │ ├── _sparse_dot.h.i │ │ │ │ │ │ ├── _sparse_expression_maker.h.i │ │ │ │ │ │ ├── _sparse_flagged.h.i │ │ │ │ │ │ ├── _sparse_fuzzy.h.i │ │ │ │ │ │ ├── _sparse_l_d_l_t.h.i │ │ │ │ │ │ ├── _sparse_l_l_t.h.i │ │ │ │ │ │ ├── _sparse_l_u.h.i │ │ │ │ │ │ ├── _sparse_matrix.h.i │ │ │ │ │ │ ├── _sparse_matrix_base.h.i │ │ │ │ │ │ ├── _sparse_nest_by_value.h.i │ │ │ │ │ │ ├── _sparse_product.h.i │ │ │ │ │ │ ├── _sparse_redux.h.i │ │ │ │ │ │ ├── _sparse_self_adjoint_view.h.i │ │ │ │ │ │ ├── _sparse_setter.h.i │ │ │ │ │ │ ├── _sparse_sparse_product.h.i │ │ │ │ │ │ ├── _sparse_sparse_product_with_pruning.h.i │ │ │ │ │ │ ├── _sparse_transpose.h.i │ │ │ │ │ │ ├── _sparse_triangular.h.i │ │ │ │ │ │ ├── _sparse_triangular_view.h.i │ │ │ │ │ │ ├── _sparse_util.h.i │ │ │ │ │ │ ├── _sparse_vector.h.i │ │ │ │ │ │ ├── _sparse_view.h.i │ │ │ │ │ │ ├── _super_l_u_support.h.i │ │ │ │ │ │ ├── _taucs_support.h.i │ │ │ │ │ │ ├── _triangular_solver.h.i │ │ │ │ │ │ └── _umf_pack_support.h.i │ │ │ │ │ │ ├── _sparse_cholesky │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _simplicial_cholesky.h.i │ │ │ │ │ │ └── _simplicial_cholesky__impl.h.i │ │ │ │ │ │ ├── _sparse_core │ │ │ │ │ │ ├── _ambi_vector.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _compressed_storage.h.i │ │ │ │ │ │ ├── _conservative_sparse_sparse_product.h.i │ │ │ │ │ │ ├── _core_iterators.h.i │ │ │ │ │ │ ├── _mapped_sparse_matrix.h.i │ │ │ │ │ │ ├── _sparse_assign.h.i │ │ │ │ │ │ ├── _sparse_block.h.i │ │ │ │ │ │ ├── _sparse_col_etree.h.i │ │ │ │ │ │ ├── _sparse_compressed_base.h.i │ │ │ │ │ │ ├── _sparse_cwise_binary_op.h.i │ │ │ │ │ │ ├── _sparse_cwise_unary_op.h.i │ │ │ │ │ │ ├── _sparse_dense_product.h.i │ │ │ │ │ │ ├── _sparse_diagonal_product.h.i │ │ │ │ │ │ ├── _sparse_dot.h.i │ │ │ │ │ │ ├── _sparse_fuzzy.h.i │ │ │ │ │ │ ├── _sparse_map.h.i │ │ │ │ │ │ ├── _sparse_matrix.h.i │ │ │ │ │ │ ├── _sparse_matrix_base.h.i │ │ │ │ │ │ ├── _sparse_permutation.h.i │ │ │ │ │ │ ├── _sparse_product.h.i │ │ │ │ │ │ ├── _sparse_redux.h.i │ │ │ │ │ │ ├── _sparse_ref.h.i │ │ │ │ │ │ ├── _sparse_self_adjoint_view.h.i │ │ │ │ │ │ ├── _sparse_solver_base.h.i │ │ │ │ │ │ ├── _sparse_sparse_product_with_pruning.h.i │ │ │ │ │ │ ├── _sparse_transpose.h.i │ │ │ │ │ │ ├── _sparse_triangular_view.h.i │ │ │ │ │ │ ├── _sparse_util.h.i │ │ │ │ │ │ ├── _sparse_vector.h.i │ │ │ │ │ │ ├── _sparse_view.h.i │ │ │ │ │ │ └── _triangular_solver.h.i │ │ │ │ │ │ ├── _sparse_l_u │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _sparse_l_u.h.i │ │ │ │ │ │ ├── _sparse_l_u___coletree.h.i │ │ │ │ │ │ ├── _sparse_l_u___matrix.h.i │ │ │ │ │ │ ├── _sparse_l_u___memory.h.i │ │ │ │ │ │ ├── _sparse_l_u___structs.h.i │ │ │ │ │ │ ├── _sparse_l_u___supernodal_matrix.h.i │ │ │ │ │ │ ├── _sparse_l_u___utils.h.i │ │ │ │ │ │ ├── _sparse_l_u__column__bmod.h.i │ │ │ │ │ │ ├── _sparse_l_u__column__dfs.h.i │ │ │ │ │ │ ├── _sparse_l_u__copy__to__ucol.h.i │ │ │ │ │ │ ├── _sparse_l_u__gemm__kernel.h.i │ │ │ │ │ │ ├── _sparse_l_u__heap__relax__snode.h.i │ │ │ │ │ │ ├── _sparse_l_u__kernel__bmod.h.i │ │ │ │ │ │ ├── _sparse_l_u__panel__bmod.h.i │ │ │ │ │ │ ├── _sparse_l_u__panel__dfs.h.i │ │ │ │ │ │ ├── _sparse_l_u__pivot_l.h.i │ │ │ │ │ │ ├── _sparse_l_u__prune_l.h.i │ │ │ │ │ │ ├── _sparse_l_u__relax__snode.h.i │ │ │ │ │ │ ├── _sparse_l_u__snode__bmod.h.i │ │ │ │ │ │ ├── _sparse_l_u__snode__dfs.h.i │ │ │ │ │ │ ├── _sparse_l_u_base.h.i │ │ │ │ │ │ └── _sparse_l_u_impl.h.i │ │ │ │ │ │ ├── _sparse_q_r │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _sparse_q_r.h.i │ │ │ │ │ │ ├── _std_vector │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _std_vector.h.i │ │ │ │ │ │ └── _unaligned_type.h.i │ │ │ │ │ │ ├── _stl_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _std_deque.h.i │ │ │ │ │ │ ├── _std_list.h.i │ │ │ │ │ │ ├── _std_vector.h.i │ │ │ │ │ │ └── details.h.i │ │ │ │ │ │ ├── _super_l_u_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _super_l_u_support.h.i │ │ │ │ │ │ ├── _umf_pack_support │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ └── _umf_pack_support.h.i │ │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _image.h.i │ │ │ │ │ │ ├── _kernel.h.i │ │ │ │ │ │ ├── _real_svd2x2.h.i │ │ │ │ │ │ ├── _solve.h.i │ │ │ │ │ │ ├── _sparse_solve.h.i │ │ │ │ │ │ ├── blas.h.i │ │ │ │ │ │ ├── lapack.h.i │ │ │ │ │ │ ├── lapacke.h.i │ │ │ │ │ │ └── lapacke__mangling.h.i │ │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── _array_cwise_binary_ops.h.i │ │ │ │ │ │ ├── _array_cwise_unary_ops.h.i │ │ │ │ │ │ ├── _block_methods.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _common_cwise_binary_ops.h.i │ │ │ │ │ │ ├── _common_cwise_unary_ops.h.i │ │ │ │ │ │ ├── _indexed_view_methods.h.i │ │ │ │ │ │ ├── _matrix_cwise_binary_ops.h.i │ │ │ │ │ │ ├── _matrix_cwise_unary_ops.h.i │ │ │ │ │ │ └── _reshaped_methods.h.i │ │ │ │ ├── _i_n_s_t_a_l_l.i │ │ │ │ ├── _mainpage.dox.i │ │ │ │ ├── _r_e_a_d_m_e.md.i │ │ │ │ ├── _t_o_d_o.i │ │ │ │ ├── bench │ │ │ │ │ ├── _bench_sparse_util.h.i │ │ │ │ │ ├── _bench_timer.h.i │ │ │ │ │ ├── _bench_util.h.i │ │ │ │ │ ├── _r_e_a_d_m_e.txt.i │ │ │ │ │ ├── analyze-blocking-sizes.cpp.i │ │ │ │ │ ├── basicbench.cxxlist.i │ │ │ │ │ ├── basicbenchmark.cpp.i │ │ │ │ │ ├── basicbenchmark.h.i │ │ │ │ │ ├── bench__gemm.cpp.i │ │ │ │ │ ├── bench__gemm__blas.cpp.i │ │ │ │ │ ├── bench__multi__compilers.sh.i │ │ │ │ │ ├── bench__norm.cpp.i │ │ │ │ │ ├── bench__reverse.cpp.i │ │ │ │ │ ├── bench__sum.cpp.i │ │ │ │ │ ├── bench__unrolling.i │ │ │ │ │ ├── bench_blas_gemm.cpp.i │ │ │ │ │ ├── bench_cholesky.cpp.i │ │ │ │ │ ├── bench_eigen_solver.cpp.i │ │ │ │ │ ├── bench_f_f_t.cpp.i │ │ │ │ │ ├── bench_geometry.cpp.i │ │ │ │ │ ├── bench_vec_add.cpp.i │ │ │ │ │ ├── benchmark-blocking-sizes.cpp.i │ │ │ │ │ ├── benchmark.cpp.i │ │ │ │ │ ├── benchmark__suite.i │ │ │ │ │ ├── benchmark_slice.cpp.i │ │ │ │ │ ├── benchmark_x.cpp.i │ │ │ │ │ ├── benchmark_x_l.cpp.i │ │ │ │ │ ├── benchmark_xcwise.cpp.i │ │ │ │ │ ├── btl │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _c_o_p_y_i_n_g.i │ │ │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── action__aat__product.hh.i │ │ │ │ │ │ │ ├── action__ata__product.hh.i │ │ │ │ │ │ │ ├── action__atv__product.hh.i │ │ │ │ │ │ │ ├── action__axpby.hh.i │ │ │ │ │ │ │ ├── action__axpy.hh.i │ │ │ │ │ │ │ ├── action__cholesky.hh.i │ │ │ │ │ │ │ ├── action__ger.hh.i │ │ │ │ │ │ │ ├── action__hessenberg.hh.i │ │ │ │ │ │ │ ├── action__lu__decomp.hh.i │ │ │ │ │ │ │ ├── action__lu__solve.hh.i │ │ │ │ │ │ │ ├── action__matrix__matrix__product.hh.i │ │ │ │ │ │ │ ├── action__matrix__matrix__product__bis.hh.i │ │ │ │ │ │ │ ├── action__matrix__vector__product.hh.i │ │ │ │ │ │ │ ├── action__partial__lu.hh.i │ │ │ │ │ │ │ ├── action__rot.hh.i │ │ │ │ │ │ │ ├── action__symv.hh.i │ │ │ │ │ │ │ ├── action__syr2.hh.i │ │ │ │ │ │ │ ├── action__trisolve.hh.i │ │ │ │ │ │ │ ├── action__trisolve__matrix.hh.i │ │ │ │ │ │ │ ├── action__trmm.hh.i │ │ │ │ │ │ │ └── basic__actions.hh.i │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ ├── _find_a_c_m_l.cmake.i │ │ │ │ │ │ │ ├── _find_a_t_l_a_s.cmake.i │ │ │ │ │ │ │ ├── _find_b_l_a_z_e.cmake.i │ │ │ │ │ │ │ ├── _find_blitz.cmake.i │ │ │ │ │ │ │ ├── _find_c_b_l_a_s.cmake.i │ │ │ │ │ │ │ ├── _find_eigen.cmake.i │ │ │ │ │ │ │ ├── _find_eigen2.cmake.i │ │ │ │ │ │ │ ├── _find_eigen3.cmake.i │ │ │ │ │ │ │ ├── _find_g_m_m.cmake.i │ │ │ │ │ │ │ ├── _find_g_o_t_o.cmake.i │ │ │ │ │ │ │ ├── _find_g_o_t_o2.cmake.i │ │ │ │ │ │ │ ├── _find_m_k_l.cmake.i │ │ │ │ │ │ │ ├── _find_m_t_l4.cmake.i │ │ │ │ │ │ │ ├── _find_o_p_e_n_b_l_a_s.cmake.i │ │ │ │ │ │ │ ├── _find_open_b_l_a_s.cmake.i │ │ │ │ │ │ │ ├── _find_package_handle_standard_args.cmake.i │ │ │ │ │ │ │ ├── _find_tvmet.cmake.i │ │ │ │ │ │ │ └── _macro_optional_add_subdirectory.cmake.i │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── aat.hh.i │ │ │ │ │ │ │ ├── action__settings.txt.i │ │ │ │ │ │ │ ├── ata.hh.i │ │ │ │ │ │ │ ├── atv.hh.i │ │ │ │ │ │ │ ├── axpby.hh.i │ │ │ │ │ │ │ ├── axpy.hh.i │ │ │ │ │ │ │ ├── cholesky.hh.i │ │ │ │ │ │ │ ├── gnuplot__common__settings.hh.i │ │ │ │ │ │ │ ├── go__mean.i │ │ │ │ │ │ │ ├── hessenberg.hh.i │ │ │ │ │ │ │ ├── matrix__matrix.hh.i │ │ │ │ │ │ │ ├── matrix__vector.hh.i │ │ │ │ │ │ │ ├── mean.cxx.i │ │ │ │ │ │ │ ├── mk__gnuplot__script.sh.i │ │ │ │ │ │ │ ├── mk__mean__script.sh.i │ │ │ │ │ │ │ ├── mk__new__gnuplot.sh.i │ │ │ │ │ │ │ ├── order__lib.i │ │ │ │ │ │ │ ├── perlib__plot__settings.txt.i │ │ │ │ │ │ │ ├── regularize.cxx.i │ │ │ │ │ │ │ ├── smooth.cxx.i │ │ │ │ │ │ │ ├── smooth__all.sh.i │ │ │ │ │ │ │ ├── tridiagonalization.hh.i │ │ │ │ │ │ │ └── trisolve.hh.i │ │ │ │ │ │ ├── generic__bench │ │ │ │ │ │ │ ├── bench.hh.i │ │ │ │ │ │ │ ├── bench__parameter.hh.i │ │ │ │ │ │ │ ├── btl.hh.i │ │ │ │ │ │ │ ├── init │ │ │ │ │ │ │ │ ├── init__function.hh.i │ │ │ │ │ │ │ │ ├── init__matrix.hh.i │ │ │ │ │ │ │ │ └── init__vector.hh.i │ │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ │ ├── bench__static.hh.i │ │ │ │ │ │ │ │ ├── intel__bench__fixed__size.hh.i │ │ │ │ │ │ │ │ └── static__size__generator.hh.i │ │ │ │ │ │ │ ├── timers │ │ │ │ │ │ │ │ ├── _s_t_l__perf__analyzer.hh.i │ │ │ │ │ │ │ │ ├── _s_t_l__timer.hh.i │ │ │ │ │ │ │ │ ├── mixed__perf__analyzer.hh.i │ │ │ │ │ │ │ │ ├── portable__perf__analyzer.hh.i │ │ │ │ │ │ │ │ ├── portable__perf__analyzer__old.hh.i │ │ │ │ │ │ │ │ ├── portable__timer.hh.i │ │ │ │ │ │ │ │ ├── x86__perf__analyzer.hh.i │ │ │ │ │ │ │ │ └── x86__timer.hh.i │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── dump__file__x__y.hh.i │ │ │ │ │ │ │ │ ├── size__lin__log.hh.i │ │ │ │ │ │ │ │ ├── size__log.hh.i │ │ │ │ │ │ │ │ ├── utilities.h.i │ │ │ │ │ │ │ │ └── xy__file.hh.i │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ ├── _a_t_l_a_s │ │ │ │ │ │ │ ├── _a_t_l_a_s___l_u__solve__interface.hh.i │ │ │ │ │ │ │ ├── _a_t_l_a_s__interface.hh.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ │ └── titi.txt.i │ │ │ │ │ │ │ ├── _b_l_a_s │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── blas.h.i │ │ │ │ │ │ │ ├── blas__interface.hh.i │ │ │ │ │ │ │ ├── blas__interface__impl.hh.i │ │ │ │ │ │ │ ├── c__interface__base.h.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── _c │ │ │ │ │ │ │ ├── _c__interface.hh.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── _c___b_l_a_s │ │ │ │ │ │ │ ├── _c___b_l_a_s__interface.hh.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── blas.h.i │ │ │ │ │ │ │ ├── cblas.h.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── _i_n_t_e_l___b_l_a_s │ │ │ │ │ │ │ ├── _i_n_t_e_l___b_l_a_s___l_u__solve__interface.hh.i │ │ │ │ │ │ │ ├── _i_n_t_e_l___b_l_a_s__interface.hh.i │ │ │ │ │ │ │ ├── config.sh.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── _s_t_l │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _s_t_l__interface.hh.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── _s_t_l__algo │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _s_t_l__algo__interface.hh.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── blaze │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── blaze__interface.hh.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── blitz │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── blitz___l_u__solve__interface.hh.i │ │ │ │ │ │ │ ├── blitz__interface.hh.i │ │ │ │ │ │ │ ├── btl__blitz.cpp.i │ │ │ │ │ │ │ ├── btl__tiny__blitz.cpp.i │ │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ │ └── tiny__blitz__interface.hh.i │ │ │ │ │ │ │ ├── eigen2 │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── btl__tiny__eigen2.cpp.i │ │ │ │ │ │ │ ├── eigen2___l_u__solve__interface.hh.i │ │ │ │ │ │ │ ├── eigen2__interface.hh.i │ │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ │ ├── main__adv.cpp.i │ │ │ │ │ │ │ ├── main__linear.cpp.i │ │ │ │ │ │ │ ├── main__matmat.cpp.i │ │ │ │ │ │ │ └── main__vecmat.cpp.i │ │ │ │ │ │ │ ├── eigen3 │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── btl__tiny__eigen3.cpp.i │ │ │ │ │ │ │ ├── eigen3__interface.hh.i │ │ │ │ │ │ │ ├── main__adv.cpp.i │ │ │ │ │ │ │ ├── main__linear.cpp.i │ │ │ │ │ │ │ ├── main__matmat.cpp.i │ │ │ │ │ │ │ └── main__vecmat.cpp.i │ │ │ │ │ │ │ ├── f77 │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── daat.f.i │ │ │ │ │ │ │ ├── data.f.i │ │ │ │ │ │ │ ├── daxpy.f.i │ │ │ │ │ │ │ ├── dmxm.f.i │ │ │ │ │ │ │ ├── dmxm.f.mfr.i │ │ │ │ │ │ │ ├── dmxv.f.i │ │ │ │ │ │ │ ├── f77__interface.hh.i │ │ │ │ │ │ │ ├── f77__interface__base.hh.i │ │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ │ ├── saat.f.i │ │ │ │ │ │ │ ├── sata.f.i │ │ │ │ │ │ │ ├── saxpy.f.i │ │ │ │ │ │ │ ├── smxm.f.i │ │ │ │ │ │ │ ├── smxv.f.i │ │ │ │ │ │ │ └── test__interface.hh.i │ │ │ │ │ │ │ ├── gmm │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── gmm___l_u__solve__interface.hh.i │ │ │ │ │ │ │ ├── gmm__interface.hh.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── hand__vec │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── hand__vec__interface.hh.i │ │ │ │ │ │ │ └── main.cpp.i │ │ │ │ │ │ │ ├── mtl4 │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ │ ├── mtl4___l_u__solve__interface.hh.i │ │ │ │ │ │ │ ├── mtl4__interface.hh.i │ │ │ │ │ │ │ └── ~2ekdbgrc.main.i │ │ │ │ │ │ │ ├── tensors │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── main__linear.cpp.i │ │ │ │ │ │ │ ├── main__matmat.cpp.i │ │ │ │ │ │ │ ├── main__vecmat.cpp.i │ │ │ │ │ │ │ └── tensor__interface.hh.i │ │ │ │ │ │ │ ├── tiny__blitz │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ │ └── tiny__blitz__interface.hh.i │ │ │ │ │ │ │ ├── tvmet │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ │ └── tvmet__interface.hh.i │ │ │ │ │ │ │ └── ublas │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ │ └── ublas__interface.hh.i │ │ │ │ │ ├── check__cache__queries.cpp.i │ │ │ │ │ ├── dense__solvers.cpp.i │ │ │ │ │ ├── eig33.cpp.i │ │ │ │ │ ├── geometry.cpp.i │ │ │ │ │ ├── ompbench.cxxlist.i │ │ │ │ │ ├── ompbenchmark.cpp.i │ │ │ │ │ ├── perf__monitoring │ │ │ │ │ │ ├── changesets.txt.i │ │ │ │ │ │ ├── chart__footer.html.i │ │ │ │ │ │ ├── chart__header.html.i │ │ │ │ │ │ ├── footer.html.i │ │ │ │ │ │ ├── gemm.cpp.i │ │ │ │ │ │ ├── gemm │ │ │ │ │ │ │ ├── changesets.txt.i │ │ │ │ │ │ │ ├── gemm.cpp.i │ │ │ │ │ │ │ ├── gemm__common.h.i │ │ │ │ │ │ │ ├── gemm__settings.txt.i │ │ │ │ │ │ │ ├── gemm__square__settings.txt.i │ │ │ │ │ │ │ ├── gemv.cpp.i │ │ │ │ │ │ │ ├── gemv__common.h.i │ │ │ │ │ │ │ ├── gemv__settings.txt.i │ │ │ │ │ │ │ ├── gemv__square__settings.txt.i │ │ │ │ │ │ │ ├── gemvt.cpp.i │ │ │ │ │ │ │ ├── lazy__gemm.cpp.i │ │ │ │ │ │ │ ├── lazy__gemm__settings.txt.i │ │ │ │ │ │ │ ├── llt.cpp.i │ │ │ │ │ │ │ ├── make__plot.sh.i │ │ │ │ │ │ │ ├── run.sh.i │ │ │ │ │ │ │ ├── run__gemm.sh.i │ │ │ │ │ │ │ ├── runall.sh.i │ │ │ │ │ │ │ ├── s1.js.i │ │ │ │ │ │ │ ├── s2.js.i │ │ │ │ │ │ │ ├── settings.txt.i │ │ │ │ │ │ │ ├── trmv__lo.cpp.i │ │ │ │ │ │ │ ├── trmv__lot.cpp.i │ │ │ │ │ │ │ ├── trmv__up.cpp.i │ │ │ │ │ │ │ └── trmv__upt.cpp.i │ │ │ │ │ │ ├── gemm__common.h.i │ │ │ │ │ │ ├── gemm__settings.txt.i │ │ │ │ │ │ ├── gemm__square__settings.txt.i │ │ │ │ │ │ ├── gemv.cpp.i │ │ │ │ │ │ ├── gemv__common.h.i │ │ │ │ │ │ ├── gemv__settings.txt.i │ │ │ │ │ │ ├── gemv__square__settings.txt.i │ │ │ │ │ │ ├── gemvt.cpp.i │ │ │ │ │ │ ├── header.html.i │ │ │ │ │ │ ├── lazy__gemm.cpp.i │ │ │ │ │ │ ├── lazy__gemm │ │ │ │ │ │ │ ├── changesets.txt.i │ │ │ │ │ │ │ ├── lazy__gemm.cpp.i │ │ │ │ │ │ │ ├── make__plot.sh.i │ │ │ │ │ │ │ ├── run__lazy__gemm.sh.i │ │ │ │ │ │ │ └── settings.txt.i │ │ │ │ │ │ ├── lazy__gemm__settings.txt.i │ │ │ │ │ │ ├── llt.cpp.i │ │ │ │ │ │ ├── make__plot.sh.i │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ ├── chart__footer.html.i │ │ │ │ │ │ │ ├── chart__header.html.i │ │ │ │ │ │ │ ├── footer.html.i │ │ │ │ │ │ │ ├── header.html.i │ │ │ │ │ │ │ ├── s1.js.i │ │ │ │ │ │ │ └── s2.js.i │ │ │ │ │ │ ├── run.sh.i │ │ │ │ │ │ ├── runall.sh.i │ │ │ │ │ │ ├── trmv__lo.cpp.i │ │ │ │ │ │ ├── trmv__lot.cpp.i │ │ │ │ │ │ ├── trmv__up.cpp.i │ │ │ │ │ │ └── trmv__upt.cpp.i │ │ │ │ │ ├── product__threshold.cpp.i │ │ │ │ │ ├── quat__slerp.cpp.i │ │ │ │ │ ├── quatmul.cpp.i │ │ │ │ │ ├── sparse__01.cpp.i │ │ │ │ │ ├── sparse__cholesky.cpp.i │ │ │ │ │ ├── sparse__dense__product.cpp.i │ │ │ │ │ ├── sparse__lu.cpp.i │ │ │ │ │ ├── sparse__product.cpp.i │ │ │ │ │ ├── sparse__randomsetter.cpp.i │ │ │ │ │ ├── sparse__setter.cpp.i │ │ │ │ │ ├── sparse__transpose.cpp.i │ │ │ │ │ ├── sparse__trisolver.cpp.i │ │ │ │ │ ├── spbench │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── sp__solver.cpp.i │ │ │ │ │ │ ├── spbench.dtd.i │ │ │ │ │ │ ├── spbench.xsl.i │ │ │ │ │ │ ├── spbenchsolver.cpp.i │ │ │ │ │ │ ├── spbenchsolver.h.i │ │ │ │ │ │ ├── spbenchstyle.h.i │ │ │ │ │ │ └── test__sparse_l_u.cpp.i │ │ │ │ │ ├── spmv.cpp.i │ │ │ │ │ ├── tensors │ │ │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ │ │ ├── benchmark.h.i │ │ │ │ │ │ ├── benchmark__main.cc.i │ │ │ │ │ │ ├── contraction__benchmarks__cpu.cc.i │ │ │ │ │ │ ├── tensor__benchmarks.h.i │ │ │ │ │ │ ├── tensor__benchmarks__cpu.cc.i │ │ │ │ │ │ ├── tensor__benchmarks__fp16__gpu.cu.i │ │ │ │ │ │ ├── tensor__benchmarks__gpu.cc.i │ │ │ │ │ │ ├── tensor__benchmarks__gpu.cu.i │ │ │ │ │ │ ├── tensor__benchmarks__sycl.cc.i │ │ │ │ │ │ └── tensor__benchmarks__sycl__include__headers.cc.i │ │ │ │ │ └── vdw__new.cpp.i │ │ │ │ ├── blas │ │ │ │ │ ├── _band_triangular_solver.h.i │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── _general_rank1_update.h.i │ │ │ │ │ ├── _packed_selfadjoint_product.h.i │ │ │ │ │ ├── _packed_triangular_matrix_vector.h.i │ │ │ │ │ ├── _packed_triangular_solver_vector.h.i │ │ │ │ │ ├── _r_e_a_d_m_e.txt.i │ │ │ │ │ ├── _rank2_update.h.i │ │ │ │ │ ├── _selfadjoint_packed_product.h.i │ │ │ │ │ ├── blas.h.i │ │ │ │ │ ├── cgbmv.f.i │ │ │ │ │ ├── chbmv.f.i │ │ │ │ │ ├── chpmv.f.i │ │ │ │ │ ├── chpr.f.i │ │ │ │ │ ├── chpr2.f.i │ │ │ │ │ ├── common.h.i │ │ │ │ │ ├── complex__double.cpp.i │ │ │ │ │ ├── complex__single.cpp.i │ │ │ │ │ ├── complexdots.f.i │ │ │ │ │ ├── ctbmv.f.i │ │ │ │ │ ├── ctbsv.f.i │ │ │ │ │ ├── ctpmv.f.i │ │ │ │ │ ├── ctpsv.f.i │ │ │ │ │ ├── dgbmv.f.i │ │ │ │ │ ├── double.cpp.i │ │ │ │ │ ├── drotm.f.i │ │ │ │ │ ├── drotmg.f.i │ │ │ │ │ ├── dsbmv.f.i │ │ │ │ │ ├── dspmv.f.i │ │ │ │ │ ├── dspr.f.i │ │ │ │ │ ├── dspr2.f.i │ │ │ │ │ ├── dtbmv.f.i │ │ │ │ │ ├── dtbsv.f.i │ │ │ │ │ ├── dtpmv.f.i │ │ │ │ │ ├── dtpsv.f.i │ │ │ │ │ ├── f2c │ │ │ │ │ │ ├── chbmv.c.i │ │ │ │ │ │ ├── chpmv.c.i │ │ │ │ │ │ ├── complexdots.c.i │ │ │ │ │ │ ├── ctbmv.c.i │ │ │ │ │ │ ├── d__cnjg.c.i │ │ │ │ │ │ ├── datatypes.h.i │ │ │ │ │ │ ├── drotm.c.i │ │ │ │ │ │ ├── drotmg.c.i │ │ │ │ │ │ ├── dsbmv.c.i │ │ │ │ │ │ ├── dspmv.c.i │ │ │ │ │ │ ├── dtbmv.c.i │ │ │ │ │ │ ├── lsame.c.i │ │ │ │ │ │ ├── r__cnjg.c.i │ │ │ │ │ │ ├── srotm.c.i │ │ │ │ │ │ ├── srotmg.c.i │ │ │ │ │ │ ├── ssbmv.c.i │ │ │ │ │ │ ├── sspmv.c.i │ │ │ │ │ │ ├── stbmv.c.i │ │ │ │ │ │ ├── zhbmv.c.i │ │ │ │ │ │ ├── zhpmv.c.i │ │ │ │ │ │ └── ztbmv.c.i │ │ │ │ │ ├── fortran │ │ │ │ │ │ ├── chbmv.f.i │ │ │ │ │ │ ├── chpmv.f.i │ │ │ │ │ │ ├── complexdots.f.i │ │ │ │ │ │ ├── ctbmv.f.i │ │ │ │ │ │ ├── drotm.f.i │ │ │ │ │ │ ├── drotmg.f.i │ │ │ │ │ │ ├── dsbmv.f.i │ │ │ │ │ │ ├── dspmv.f.i │ │ │ │ │ │ ├── dtbmv.f.i │ │ │ │ │ │ ├── lsame.f.i │ │ │ │ │ │ ├── srotm.f.i │ │ │ │ │ │ ├── srotmg.f.i │ │ │ │ │ │ ├── ssbmv.f.i │ │ │ │ │ │ ├── sspmv.f.i │ │ │ │ │ │ ├── stbmv.f.i │ │ │ │ │ │ ├── zhbmv.f.i │ │ │ │ │ │ ├── zhpmv.f.i │ │ │ │ │ │ └── ztbmv.f.i │ │ │ │ │ ├── level1__cplx__impl.h.i │ │ │ │ │ ├── level1__impl.h.i │ │ │ │ │ ├── level1__real__impl.h.i │ │ │ │ │ ├── level2__cplx__impl.h.i │ │ │ │ │ ├── level2__impl.h.i │ │ │ │ │ ├── level2__real__impl.h.i │ │ │ │ │ ├── level3__impl.h.i │ │ │ │ │ ├── lsame.f.i │ │ │ │ │ ├── sgbmv.f.i │ │ │ │ │ ├── single.cpp.i │ │ │ │ │ ├── srotm.f.i │ │ │ │ │ ├── srotmg.f.i │ │ │ │ │ ├── ssbmv.f.i │ │ │ │ │ ├── sspmv.f.i │ │ │ │ │ ├── sspr.f.i │ │ │ │ │ ├── sspr2.f.i │ │ │ │ │ ├── stbmv.f.i │ │ │ │ │ ├── stbsv.f.i │ │ │ │ │ ├── stpmv.f.i │ │ │ │ │ ├── stpsv.f.i │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── cblat1.f.i │ │ │ │ │ │ ├── cblat2.dat.i │ │ │ │ │ │ ├── cblat2.f.i │ │ │ │ │ │ ├── cblat3.dat.i │ │ │ │ │ │ ├── cblat3.f.i │ │ │ │ │ │ ├── dblat1.f.i │ │ │ │ │ │ ├── dblat2.dat.i │ │ │ │ │ │ ├── dblat2.f.i │ │ │ │ │ │ ├── dblat3.dat.i │ │ │ │ │ │ ├── dblat3.f.i │ │ │ │ │ │ ├── runblastest.sh.i │ │ │ │ │ │ ├── sblat1.f.i │ │ │ │ │ │ ├── sblat2.dat.i │ │ │ │ │ │ ├── sblat2.f.i │ │ │ │ │ │ ├── sblat3.dat.i │ │ │ │ │ │ ├── sblat3.f.i │ │ │ │ │ │ ├── zblat1.f.i │ │ │ │ │ │ ├── zblat2.dat.i │ │ │ │ │ │ ├── zblat2.f.i │ │ │ │ │ │ ├── zblat3.dat.i │ │ │ │ │ │ └── zblat3.f.i │ │ │ │ │ ├── xerbla.cpp.i │ │ │ │ │ ├── zgbmv.f.i │ │ │ │ │ ├── zhbmv.f.i │ │ │ │ │ ├── zhpmv.f.i │ │ │ │ │ ├── zhpr.f.i │ │ │ │ │ ├── zhpr2.f.i │ │ │ │ │ ├── ztbmv.f.i │ │ │ │ │ ├── ztbsv.f.i │ │ │ │ │ ├── ztpmv.f.i │ │ │ │ │ └── ztpsv.f.i │ │ │ │ ├── cmake │ │ │ │ │ ├── _c_make_determine_v_s_service_pack.cmake.i │ │ │ │ │ ├── _check_always_inline.cmake.i │ │ │ │ │ ├── _check_complex.cmake.i │ │ │ │ │ ├── _check_complex_math1.cmake.i │ │ │ │ │ ├── _check_complex_math2.cmake.i │ │ │ │ │ ├── _check_ieee_math.cmake.i │ │ │ │ │ ├── _check_long_double.cmake.i │ │ │ │ │ ├── _check_long_long.cmake.i │ │ │ │ │ ├── _check_restrict_keyword.cmake.i │ │ │ │ │ ├── _check_sysv_math.cmake.i │ │ │ │ │ ├── _eigen3_config.cmake.in.i │ │ │ │ │ ├── _eigen3_config_legacy.cmake.in.i │ │ │ │ │ ├── _eigen_configure_testing.cmake.i │ │ │ │ │ ├── _eigen_determine_o_s_version.cmake.i │ │ │ │ │ ├── _eigen_determine_v_s_service_pack.cmake.i │ │ │ │ │ ├── _eigen_testing.cmake.i │ │ │ │ │ ├── _eigen_uninstall.cmake.i │ │ │ │ │ ├── _find_adolc.cmake.i │ │ │ │ │ ├── _find_b_l_a_s.cmake.i │ │ │ │ │ ├── _find_b_l_a_s_e_x_t.cmake.i │ │ │ │ │ ├── _find_cholmod.cmake.i │ │ │ │ │ ├── _find_compute_cpp.cmake.i │ │ │ │ │ ├── _find_eigen2.cmake.i │ │ │ │ │ ├── _find_eigen3.cmake.i │ │ │ │ │ ├── _find_f_f_t_w.cmake.i │ │ │ │ │ ├── _find_g_l_e_w.cmake.i │ │ │ │ │ ├── _find_g_m_p.cmake.i │ │ │ │ │ ├── _find_g_s_l.cmake.i │ │ │ │ │ ├── _find_google_hash.cmake.i │ │ │ │ │ ├── _find_h_w_l_o_c.cmake.i │ │ │ │ │ ├── _find_k_l_u.cmake.i │ │ │ │ │ ├── _find_l_a_p_a_c_k.cmake.i │ │ │ │ │ ├── _find_m_p_f_r.cmake.i │ │ │ │ │ ├── _find_metis.cmake.i │ │ │ │ │ ├── _find_mkldnn.cmake.i │ │ │ │ │ ├── _find_p_t_s_c_o_t_c_h.cmake.i │ │ │ │ │ ├── _find_pastix.cmake.i │ │ │ │ │ ├── _find_s_p_q_r.cmake.i │ │ │ │ │ ├── _find_scotch.cmake.i │ │ │ │ │ ├── _find_standard_math_library.cmake.i │ │ │ │ │ ├── _find_super_l_u.cmake.i │ │ │ │ │ ├── _find_taucs.cmake.i │ │ │ │ │ ├── _find_tri_s_y_c_l.cmake.i │ │ │ │ │ ├── _find_umfpack.cmake.i │ │ │ │ │ ├── _find_xsmm.cmake.i │ │ │ │ │ ├── _regex_utils.cmake.i │ │ │ │ │ ├── _use_eigen3.cmake.i │ │ │ │ │ ├── language__support.cmake.i │ │ │ │ │ └── modules │ │ │ │ │ │ ├── _check_always_inline.cmake.i │ │ │ │ │ │ ├── _check_complex.cmake.i │ │ │ │ │ │ ├── _check_complex_math1.cmake.i │ │ │ │ │ │ ├── _check_complex_math2.cmake.i │ │ │ │ │ │ ├── _check_ieee_math.cmake.i │ │ │ │ │ │ ├── _check_long_double.cmake.i │ │ │ │ │ │ ├── _check_long_long.cmake.i │ │ │ │ │ │ ├── _check_restrict_keyword.cmake.i │ │ │ │ │ │ └── _check_sysv_math.cmake.i │ │ │ │ ├── debug │ │ │ │ │ ├── gdb │ │ │ │ │ │ ├── ____init____.py.i │ │ │ │ │ │ └── printers.py.i │ │ │ │ │ └── msvc │ │ │ │ │ │ ├── eigen.natvis.i │ │ │ │ │ │ └── eigen__autoexp__part.dat.i │ │ │ │ ├── demos │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── mandelbrot │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ │ │ ├── mandelbrot.cpp.i │ │ │ │ │ │ └── mandelbrot.h.i │ │ │ │ │ ├── mix__eigen__and__c │ │ │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ │ │ ├── binary__library.cpp.i │ │ │ │ │ │ ├── binary__library.h.i │ │ │ │ │ │ └── example.c.i │ │ │ │ │ └── opengl │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ │ │ ├── camera.cpp.i │ │ │ │ │ │ ├── camera.h.i │ │ │ │ │ │ ├── gpuhelper.cpp.i │ │ │ │ │ │ ├── gpuhelper.h.i │ │ │ │ │ │ ├── icosphere.cpp.i │ │ │ │ │ │ ├── icosphere.h.i │ │ │ │ │ │ ├── quaternion__demo.cpp.i │ │ │ │ │ │ ├── quaternion__demo.h.i │ │ │ │ │ │ ├── trackball.cpp.i │ │ │ │ │ │ └── trackball.h.i │ │ │ │ ├── disabled │ │ │ │ │ ├── _array_base.h.i │ │ │ │ │ ├── _euler_angles.h.i │ │ │ │ │ ├── _eval.h.i │ │ │ │ │ ├── _eval___matrix_type.cpp.i │ │ │ │ │ ├── _eval_o_m_p.h.i │ │ │ │ │ ├── _hash_matrix.h.i │ │ │ │ │ ├── _householder.h.i │ │ │ │ │ ├── _linked_vector_matrix.h.i │ │ │ │ │ ├── _product.h.i │ │ │ │ │ ├── _skyline_matrix.h.i │ │ │ │ │ ├── _sparse_setter.h.i │ │ │ │ │ ├── apidox__preprocessing.sh.i │ │ │ │ │ ├── buildexamplelist.sh.i │ │ │ │ │ ├── class___eval.cpp.i │ │ │ │ │ ├── cleanhierarchy.sh.i │ │ │ │ │ ├── ompbench.cxxlist.i │ │ │ │ │ └── ompbenchmark.cpp.i │ │ │ │ ├── doc │ │ │ │ │ ├── _a05___porting_from2_to3.dox.i │ │ │ │ │ ├── _a10___eigen2_support_modes.dox.i │ │ │ │ │ ├── _ascii_quick_reference.txt.i │ │ │ │ │ ├── _b01___experimental.dox.i │ │ │ │ │ ├── _c00___quick_start_guide.dox.i │ │ │ │ │ ├── _c01___matrix.dox.i │ │ │ │ │ ├── _c01___quick_start_guide.dox.i │ │ │ │ │ ├── _c01___tutorial_core.dox.i │ │ │ │ │ ├── _c01___tutorial_matrix_class.dox.i │ │ │ │ │ ├── _c02___tutorial_matrix_arithmetic.dox.i │ │ │ │ │ ├── _c03___tutorial_array_class.dox.i │ │ │ │ │ ├── _c03___tutorial_geometry.dox.i │ │ │ │ │ ├── _c04___tutorial_block_operations.dox.i │ │ │ │ │ ├── _c05___tutorial_advanced_initialization.dox.i │ │ │ │ │ ├── _c05___tutorial_linear_algebra.dox.i │ │ │ │ │ ├── _c06___tutorial_linear_algebra.dox.i │ │ │ │ │ ├── _c07___tutorial_reductions_visitors_broadcasting.dox.i │ │ │ │ │ ├── _c07___tutorial_sparse.dox.i │ │ │ │ │ ├── _c08___tutorial_geometry.dox.i │ │ │ │ │ ├── _c09___tutorial_sparse.dox.i │ │ │ │ │ ├── _c10___tutorial_map_class.dox.i │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── _class_hierarchy.dox.i │ │ │ │ │ ├── _coeffwise_math_functions_table.dox.i │ │ │ │ │ ├── _customizing_eigen.dox.i │ │ │ │ │ ├── _customizing_eigen___custom_scalar.dox.i │ │ │ │ │ ├── _customizing_eigen___inheriting_matrix.dox.i │ │ │ │ │ ├── _customizing_eigen___nullary_expr.dox.i │ │ │ │ │ ├── _customizing_eigen___plugins.dox.i │ │ │ │ │ ├── _d01___stl_containers.dox.i │ │ │ │ │ ├── _d03___wrong_stack_alignment.dox.i │ │ │ │ │ ├── _d07___passing_by_value.dox.i │ │ │ │ │ ├── _d09___struct_having_eigen_members.dox.i │ │ │ │ │ ├── _d11___unaligned_array_assert.dox.i │ │ │ │ │ ├── _dense_decomposition_benchmark.dox.i │ │ │ │ │ ├── _doxyfile.in.i │ │ │ │ │ ├── _eigen___silly___professor__64x64.png.i │ │ │ │ │ ├── _experimental.dox.i │ │ │ │ │ ├── _fixed_size_vectorizable.dox.i │ │ │ │ │ ├── _functions_taking_eigen_types.dox.i │ │ │ │ │ ├── _hi_performance.dox.i │ │ │ │ │ ├── _i00___customizing_eigen.dox.i │ │ │ │ │ ├── _i01___topic_lazy_evaluation.dox.i │ │ │ │ │ ├── _i02___hi_performance.dox.i │ │ │ │ │ ├── _i03___inside_eigen_example.dox.i │ │ │ │ │ ├── _i05___fixed_size_vectorizable.dox.i │ │ │ │ │ ├── _i06___topic_eigen_expression_templates.dox.i │ │ │ │ │ ├── _i07___topic_scalar_types.dox.i │ │ │ │ │ ├── _i08___resizing.dox.i │ │ │ │ │ ├── _i08___storage_orders.dox.i │ │ │ │ │ ├── _i09___vectorization.dox.i │ │ │ │ │ ├── _i10___assertions.dox.i │ │ │ │ │ ├── _i11___aliasing.dox.i │ │ │ │ │ ├── _i12___class_hierarchy.dox.i │ │ │ │ │ ├── _i13___functions_taking_eigen_types.dox.i │ │ │ │ │ ├── _i14___preprocessor_directives.dox.i │ │ │ │ │ ├── _i15___storage_orders.dox.i │ │ │ │ │ ├── _i16___template_keyword.dox.i │ │ │ │ │ ├── _i17___sparse_linear_systems.dox.i │ │ │ │ │ ├── _inplace_decomposition.dox.i │ │ │ │ │ ├── _inside_eigen_example.dox.i │ │ │ │ │ ├── _least_squares.dox.i │ │ │ │ │ ├── _linear_least_squares.dox.i │ │ │ │ │ ├── _mainpage.dox.i │ │ │ │ │ ├── _manual.dox.i │ │ │ │ │ ├── _matrixfree_solver_example.dox.i │ │ │ │ │ ├── _new_expression_type.dox.i │ │ │ │ │ ├── _overview.dox.i │ │ │ │ │ ├── _passing_by_value.dox.i │ │ │ │ │ ├── _pitfalls.dox.i │ │ │ │ │ ├── _preprocessor_directives.dox.i │ │ │ │ │ ├── _quick_reference.dox.i │ │ │ │ │ ├── _quick_start_guide.dox.i │ │ │ │ │ ├── _sparse_linear_systems.dox.i │ │ │ │ │ ├── _sparse_quick_reference.dox.i │ │ │ │ │ ├── _stl_containers.dox.i │ │ │ │ │ ├── _storage_orders.dox.i │ │ │ │ │ ├── _struct_having_eigen_members.dox.i │ │ │ │ │ ├── _template_keyword.dox.i │ │ │ │ │ ├── _topic_aliasing.dox.i │ │ │ │ │ ├── _topic_assertions.dox.i │ │ │ │ │ ├── _topic_c_make_guide.dox.i │ │ │ │ │ ├── _topic_eigen_expression_templates.dox.i │ │ │ │ │ ├── _topic_lazy_evaluation.dox.i │ │ │ │ │ ├── _topic_linear_algebra_decompositions.dox.i │ │ │ │ │ ├── _topic_multithreading.dox.i │ │ │ │ │ ├── _topic_resizing.dox.i │ │ │ │ │ ├── _topic_scalar_types.dox.i │ │ │ │ │ ├── _topic_vectorization.dox.i │ │ │ │ │ ├── _tutorial_advanced_initialization.dox.i │ │ │ │ │ ├── _tutorial_array_class.dox.i │ │ │ │ │ ├── _tutorial_block_operations.dox.i │ │ │ │ │ ├── _tutorial_geometry.dox.i │ │ │ │ │ ├── _tutorial_linear_algebra.dox.i │ │ │ │ │ ├── _tutorial_map_class.dox.i │ │ │ │ │ ├── _tutorial_matrix_arithmetic.dox.i │ │ │ │ │ ├── _tutorial_matrix_class.dox.i │ │ │ │ │ ├── _tutorial_reductions_visitors_broadcasting.dox.i │ │ │ │ │ ├── _tutorial_reshape.dox.i │ │ │ │ │ ├── _tutorial_reshape_slicing.dox.i │ │ │ │ │ ├── _tutorial_s_t_l.dox.i │ │ │ │ │ ├── _tutorial_slicing_indexing.dox.i │ │ │ │ │ ├── _tutorial_sparse.dox.i │ │ │ │ │ ├── _tutorial_sparse__example__details.dox.i │ │ │ │ │ ├── _unaligned_array_assert.dox.i │ │ │ │ │ ├── _using_blas_lapack_backends.dox.i │ │ │ │ │ ├── _using_intel_m_k_l.dox.i │ │ │ │ │ ├── _using_n_v_c_c.dox.i │ │ │ │ │ ├── _wrong_stack_alignment.dox.i │ │ │ │ │ ├── apidox__preprocessing.sh.i │ │ │ │ │ ├── bench__unrolling.i │ │ │ │ │ ├── benchmark.cpp.i │ │ │ │ │ ├── benchmark__suite.i │ │ │ │ │ ├── benchmark_x.cpp.i │ │ │ │ │ ├── buildexamplelist.sh.i │ │ │ │ │ ├── cleanhierarchy.sh.i │ │ │ │ │ ├── echelon.cpp.i │ │ │ │ │ ├── eigen__navtree__hacks.js.i │ │ │ │ │ ├── eigendoxy.css.i │ │ │ │ │ ├── eigendoxy__footer.html.in.i │ │ │ │ │ ├── eigendoxy__header.html.in.i │ │ │ │ │ ├── eigendoxy__layout.xml.in.i │ │ │ │ │ ├── eigendoxy__tabs.css.i │ │ │ │ │ ├── example.cpp.i │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _customizing_eigen___inheritance.cpp.i │ │ │ │ │ │ ├── _cwise__erf.cpp.i │ │ │ │ │ │ ├── _cwise__erfc.cpp.i │ │ │ │ │ │ ├── _cwise__lgamma.cpp.i │ │ │ │ │ │ ├── _dense_base__middle_cols__int.cpp.i │ │ │ │ │ │ ├── _dense_base__middle_rows__int.cpp.i │ │ │ │ │ │ ├── _dense_base__template__int__middle_cols.cpp.i │ │ │ │ │ │ ├── _dense_base__template__int__middle_rows.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise__const.cpp.i │ │ │ │ │ │ ├── _quick_start__example.cpp.i │ │ │ │ │ │ ├── _quick_start__example2__dynamic.cpp.i │ │ │ │ │ │ ├── _quick_start__example2__fixed.cpp.i │ │ │ │ │ │ ├── _template_keyword__flexible.cpp.i │ │ │ │ │ │ ├── _template_keyword__simple.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__accessing.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__accessors.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__addition.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__addition__scalar.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__cwise__other.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__interop.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__interop__array.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__interop__matrix.cpp.i │ │ │ │ │ │ ├── _tutorial___array_class__mult.cpp.i │ │ │ │ │ │ ├── _tutorial___block_operations__block__assignment.cpp.i │ │ │ │ │ │ ├── _tutorial___block_operations__colrow.cpp.i │ │ │ │ │ │ ├── _tutorial___block_operations__corner.cpp.i │ │ │ │ │ │ ├── _tutorial___block_operations__print__block.cpp.i │ │ │ │ │ │ ├── _tutorial___block_operations__vector.cpp.i │ │ │ │ │ │ ├── _tutorial___partial_l_u__solve.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__broadcast__1nn.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__broadcast__1nn.cpp~7e.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__broadcast__simple.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__broadcast__simple.cpp~7e.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__broadcast__simple__rowwise.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__colwise.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__maxnorm.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__reductions__bool.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__reductions__norm.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__reductions__norm.cpp~7e.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__reductions__operatornorm.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__rowwise.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__visitors.cpp.i │ │ │ │ │ │ ├── _tutorial___reductions_visitors_broadcasting__visitors.cpp~7e.i │ │ │ │ │ │ ├── _tutorial__simple__example__dynamic__size.cpp.i │ │ │ │ │ │ ├── _tutorial__simple__example__fixed__size.cpp.i │ │ │ │ │ │ ├── _tutorial_inplace_l_u.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_compute_twice.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_ex_compute_solve_error.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_ex_solve_col_piv_householder_q_r.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_ex_solve_l_d_l_t.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_inverse_determinant.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_rank_revealing.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_s_v_d_solve.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_self_adjoint_eigen_solver.cpp.i │ │ │ │ │ │ ├── _tutorial_lin_alg_set_threshold.cpp.i │ │ │ │ │ │ ├── class___block.cpp.i │ │ │ │ │ │ ├── class___cast.cpp.i │ │ │ │ │ │ ├── class___column.cpp.i │ │ │ │ │ │ ├── class___cwise_binary_op.cpp.i │ │ │ │ │ │ ├── class___cwise_unary_op.cpp.i │ │ │ │ │ │ ├── class___cwise_unary_op__ptrfun.cpp.i │ │ │ │ │ │ ├── class___dyn_block.cpp.i │ │ │ │ │ │ ├── class___eval.cpp.i │ │ │ │ │ │ ├── class___fixed_block.cpp.i │ │ │ │ │ │ ├── class___fixed_reshape.cpp.i │ │ │ │ │ │ ├── class___fixed_reshaped.cpp.i │ │ │ │ │ │ ├── class___fixed_vector_block.cpp.i │ │ │ │ │ │ ├── class___reshape.cpp.i │ │ │ │ │ │ ├── class___reshaped.cpp.i │ │ │ │ │ │ ├── class___row.cpp.i │ │ │ │ │ │ ├── class___vector_block.cpp.i │ │ │ │ │ │ ├── function__dyn_block.cpp.i │ │ │ │ │ │ ├── function__taking__eigenbase.cpp.i │ │ │ │ │ │ ├── function__taking__ref.cpp.i │ │ │ │ │ │ ├── make__circulant.cpp.entry.i │ │ │ │ │ │ ├── make__circulant.cpp.evaluator.i │ │ │ │ │ │ ├── make__circulant.cpp.expression.i │ │ │ │ │ │ ├── make__circulant.cpp.i │ │ │ │ │ │ ├── make__circulant.cpp.main.i │ │ │ │ │ │ ├── make__circulant.cpp.preamble.i │ │ │ │ │ │ ├── make__circulant.cpp.traits.i │ │ │ │ │ │ ├── make__circulant2.cpp.i │ │ │ │ │ │ ├── matrixfree__cg.cpp.i │ │ │ │ │ │ ├── nullary__indexing.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__add__sub.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__dot__cross.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__matrix__mul.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__redux__basic.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__scalar__mul__div.cpp.i │ │ │ │ │ │ ├── tut__matrix__coefficient__accessors.cpp.i │ │ │ │ │ │ ├── tut__matrix__resize.cpp.i │ │ │ │ │ │ ├── tut__matrix__resize__fixed__size.cpp.i │ │ │ │ │ │ └── ~2ekrazy.i │ │ │ │ │ ├── ftv2node.png.i │ │ │ │ │ ├── ftv2pnode.png.i │ │ │ │ │ ├── snippets │ │ │ │ │ │ ├── _angle_axis__mimic__euler.cpp.i │ │ │ │ │ │ ├── _array__initializer__list2__cxx11.cpp.i │ │ │ │ │ │ ├── _array__initializer__list__23__cxx11.cpp.i │ │ │ │ │ │ ├── _array__initializer__list__cxx11.cpp.i │ │ │ │ │ │ ├── _array__initializer__list__vector__cxx11.cpp.i │ │ │ │ │ │ ├── _array__variadic__ctor__cxx11.cpp.i │ │ │ │ │ │ ├── _bi_c_g_s_t_a_b__simple.cpp.i │ │ │ │ │ │ ├── _bi_c_g_s_t_a_b__step__by__step.cpp.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cholesky__solve.cpp.i │ │ │ │ │ │ ├── _col_piv_householder_q_r__solve.cpp.i │ │ │ │ │ │ ├── _complex_eigen_solver__compute.cpp.i │ │ │ │ │ │ ├── _complex_eigen_solver__eigenvalues.cpp.i │ │ │ │ │ │ ├── _complex_eigen_solver__eigenvectors.cpp.i │ │ │ │ │ │ ├── _complex_schur__compute.cpp.i │ │ │ │ │ │ ├── _complex_schur__matrix_t.cpp.i │ │ │ │ │ │ ├── _complex_schur__matrix_u.cpp.i │ │ │ │ │ │ ├── _cwise__abs.cpp.i │ │ │ │ │ │ ├── _cwise__abs2.cpp.i │ │ │ │ │ │ ├── _cwise__acos.cpp.i │ │ │ │ │ │ ├── _cwise__arg.cpp.i │ │ │ │ │ │ ├── _cwise__array__power__array.cpp.i │ │ │ │ │ │ ├── _cwise__asin.cpp.i │ │ │ │ │ │ ├── _cwise__atan.cpp.i │ │ │ │ │ │ ├── _cwise__boolean__and.cpp.i │ │ │ │ │ │ ├── _cwise__boolean__not.cpp.i │ │ │ │ │ │ ├── _cwise__boolean__or.cpp.i │ │ │ │ │ │ ├── _cwise__boolean__xor.cpp.i │ │ │ │ │ │ ├── _cwise__ceil.cpp.i │ │ │ │ │ │ ├── _cwise__cos.cpp.i │ │ │ │ │ │ ├── _cwise__cosh.cpp.i │ │ │ │ │ │ ├── _cwise__cube.cpp.i │ │ │ │ │ │ ├── _cwise__equal__equal.cpp.i │ │ │ │ │ │ ├── _cwise__erf.cpp.i │ │ │ │ │ │ ├── _cwise__erfc.cpp.i │ │ │ │ │ │ ├── _cwise__exp.cpp.i │ │ │ │ │ │ ├── _cwise__floor.cpp.i │ │ │ │ │ │ ├── _cwise__greater.cpp.i │ │ │ │ │ │ ├── _cwise__greater__equal.cpp.i │ │ │ │ │ │ ├── _cwise__inverse.cpp.i │ │ │ │ │ │ ├── _cwise__is_finite.cpp.i │ │ │ │ │ │ ├── _cwise__is_inf.cpp.i │ │ │ │ │ │ ├── _cwise__is_na_n.cpp.i │ │ │ │ │ │ ├── _cwise__isinf.cpp.i │ │ │ │ │ │ ├── _cwise__less.cpp.i │ │ │ │ │ │ ├── _cwise__less__equal.cpp.i │ │ │ │ │ │ ├── _cwise__lgamma.cpp.i │ │ │ │ │ │ ├── _cwise__log.cpp.i │ │ │ │ │ │ ├── _cwise__log10.cpp.i │ │ │ │ │ │ ├── _cwise__max.cpp.i │ │ │ │ │ │ ├── _cwise__min.cpp.i │ │ │ │ │ │ ├── _cwise__minus.cpp.i │ │ │ │ │ │ ├── _cwise__minus__equal.cpp.i │ │ │ │ │ │ ├── _cwise__not__equal.cpp.i │ │ │ │ │ │ ├── _cwise__plus.cpp.i │ │ │ │ │ │ ├── _cwise__plus__equal.cpp.i │ │ │ │ │ │ ├── _cwise__pow.cpp.i │ │ │ │ │ │ ├── _cwise__product.cpp.i │ │ │ │ │ │ ├── _cwise__quotient.cpp.i │ │ │ │ │ │ ├── _cwise__round.cpp.i │ │ │ │ │ │ ├── _cwise__scalar__power__array.cpp.i │ │ │ │ │ │ ├── _cwise__sign.cpp.i │ │ │ │ │ │ ├── _cwise__sin.cpp.i │ │ │ │ │ │ ├── _cwise__sinh.cpp.i │ │ │ │ │ │ ├── _cwise__slash__equal.cpp.i │ │ │ │ │ │ ├── _cwise__sqrt.cpp.i │ │ │ │ │ │ ├── _cwise__square.cpp.i │ │ │ │ │ │ ├── _cwise__tan.cpp.i │ │ │ │ │ │ ├── _cwise__tanh.cpp.i │ │ │ │ │ │ ├── _cwise__times__equal.cpp.i │ │ │ │ │ │ ├── _dense_base___lin_spaced.cpp.i │ │ │ │ │ │ ├── _dense_base___lin_spaced__seq.cpp.i │ │ │ │ │ │ ├── _dense_base___lin_spaced_int.cpp.i │ │ │ │ │ │ ├── _dense_base__set_lin_spaced.cpp.i │ │ │ │ │ │ ├── _direction_wise__hnormalized.cpp.i │ │ │ │ │ │ ├── _direction_wise__replicate.cpp.i │ │ │ │ │ │ ├── _direction_wise__replicate__int.cpp.i │ │ │ │ │ │ ├── _eigen_solver___eigen_solver___matrix_type.cpp.i │ │ │ │ │ │ ├── _eigen_solver__compute.cpp.i │ │ │ │ │ │ ├── _eigen_solver__eigenvalues.cpp.i │ │ │ │ │ │ ├── _eigen_solver__eigenvectors.cpp.i │ │ │ │ │ │ ├── _eigen_solver__pseudo_eigenvectors.cpp.i │ │ │ │ │ │ ├── _eval___matrix_type.cpp.i │ │ │ │ │ │ ├── _full_piv_householder_q_r__solve.cpp.i │ │ │ │ │ │ ├── _full_piv_l_u__image.cpp.i │ │ │ │ │ │ ├── _full_piv_l_u__kernel.cpp.i │ │ │ │ │ │ ├── _full_piv_l_u__solve.cpp.i │ │ │ │ │ │ ├── _generalized_eigen_solver.cpp.i │ │ │ │ │ │ ├── _hessenberg_decomposition__compute.cpp.i │ │ │ │ │ │ ├── _hessenberg_decomposition__matrix_h.cpp.i │ │ │ │ │ │ ├── _hessenberg_decomposition__packed_matrix.cpp.i │ │ │ │ │ │ ├── _householder_q_r__householder_q.cpp.i │ │ │ │ │ │ ├── _householder_q_r__solve.cpp.i │ │ │ │ │ │ ├── _householder_sequence___householder_sequence.cpp.i │ │ │ │ │ │ ├── _i_o_format.cpp.i │ │ │ │ │ │ ├── _jacobi__make_givens.cpp.i │ │ │ │ │ │ ├── _jacobi__make_jacobi.cpp.i │ │ │ │ │ │ ├── _jacobi_s_v_d__basic.cpp.i │ │ │ │ │ │ ├── _l_l_t__example.cpp.i │ │ │ │ │ │ ├── _l_l_t__solve.cpp.i │ │ │ │ │ │ ├── _l_u__compute_image.cpp.i │ │ │ │ │ │ ├── _l_u__compute_kernel.cpp.i │ │ │ │ │ │ ├── _l_u__image.cpp.i │ │ │ │ │ │ ├── _l_u__kernel.cpp.i │ │ │ │ │ │ ├── _l_u__solve.cpp.i │ │ │ │ │ │ ├── _least_squares_normal_equations.cpp.i │ │ │ │ │ │ ├── _least_squares_q_r.cpp.i │ │ │ │ │ │ ├── _map__general__stride.cpp.i │ │ │ │ │ │ ├── _map__inner__stride.cpp.i │ │ │ │ │ │ ├── _map__outer__stride.cpp.i │ │ │ │ │ │ ├── _map__placement__new.cpp.i │ │ │ │ │ │ ├── _map__simple.cpp.i │ │ │ │ │ │ ├── _matrix___map__stride.cpp.i │ │ │ │ │ │ ├── _matrix__initializer__list2__cxx11.cpp.i │ │ │ │ │ │ ├── _matrix__initializer__list__23__cxx11.cpp.i │ │ │ │ │ │ ├── _matrix__initializer__list__cxx11.cpp.i │ │ │ │ │ │ ├── _matrix__initializer__list__vector__cxx11.cpp.i │ │ │ │ │ │ ├── _matrix__resize___no_change__int.cpp.i │ │ │ │ │ │ ├── _matrix__resize__int.cpp.i │ │ │ │ │ │ ├── _matrix__resize__int___no_change.cpp.i │ │ │ │ │ │ ├── _matrix__resize__int__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_constant__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_constant__int__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_identity__int__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_ones__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_ones__int__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_random__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_random__int__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_zero__int.cpp.i │ │ │ │ │ │ ├── _matrix__set_zero__int__int.cpp.i │ │ │ │ │ │ ├── _matrix__variadic__ctor__cxx11.cpp.i │ │ │ │ │ │ ├── _matrix_base__adjoint.cpp.i │ │ │ │ │ │ ├── _matrix_base__all.cpp.i │ │ │ │ │ │ ├── _matrix_base__apply_on_the_left.cpp.i │ │ │ │ │ │ ├── _matrix_base__apply_on_the_right.cpp.i │ │ │ │ │ │ ├── _matrix_base__array.cpp.i │ │ │ │ │ │ ├── _matrix_base__array__const.cpp.i │ │ │ │ │ │ ├── _matrix_base__as_diagonal.cpp.i │ │ │ │ │ │ ├── _matrix_base__block.cpp.i │ │ │ │ │ │ ├── _matrix_base__block__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__block__int__int__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__bottom_left_corner__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__bottom_right_corner__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__bottom_rows__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__cast.cpp.i │ │ │ │ │ │ ├── _matrix_base__col.cpp.i │ │ │ │ │ │ ├── _matrix_base__colwise.cpp.i │ │ │ │ │ │ ├── _matrix_base__colwise__iterator__cxx11.cpp.i │ │ │ │ │ │ ├── _matrix_base__compute_inverse.cpp.i │ │ │ │ │ │ ├── _matrix_base__compute_inverse_and_det_with_check.cpp.i │ │ │ │ │ │ ├── _matrix_base__compute_inverse_with_check.cpp.i │ │ │ │ │ │ ├── _matrix_base__corner__enum__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise__const.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_abs.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_abs2.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_equal.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_inverse.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_max.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_min.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_not_equal.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_product.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_quotient.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_sign.cpp.i │ │ │ │ │ │ ├── _matrix_base__cwise_sqrt.cpp.i │ │ │ │ │ │ ├── _matrix_base__diagonal.cpp.i │ │ │ │ │ │ ├── _matrix_base__diagonal__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__diagonal__template__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__dyn_block.cpp.i │ │ │ │ │ │ ├── _matrix_base__eigenvalues.cpp.i │ │ │ │ │ │ ├── _matrix_base__end__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__eval.cpp.i │ │ │ │ │ │ ├── _matrix_base__extract.cpp.i │ │ │ │ │ │ ├── _matrix_base__fixed_block__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__hnormalized.cpp.i │ │ │ │ │ │ ├── _matrix_base__homogeneous.cpp.i │ │ │ │ │ │ ├── _matrix_base__identity.cpp.i │ │ │ │ │ │ ├── _matrix_base__identity__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__identity__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__inverse.cpp.i │ │ │ │ │ │ ├── _matrix_base__is_diagonal.cpp.i │ │ │ │ │ │ ├── _matrix_base__is_identity.cpp.i │ │ │ │ │ │ ├── _matrix_base__is_ones.cpp.i │ │ │ │ │ │ ├── _matrix_base__is_ortho__matrix.cpp.i │ │ │ │ │ │ ├── _matrix_base__is_ortho__vector.cpp.i │ │ │ │ │ │ ├── _matrix_base__is_orthogonal.cpp.i │ │ │ │ │ │ ├── _matrix_base__is_unitary.cpp.i │ │ │ │ │ │ ├── _matrix_base__is_zero.cpp.i │ │ │ │ │ │ ├── _matrix_base__lazy.cpp.i │ │ │ │ │ │ ├── _matrix_base__left_cols__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__map.cpp.i │ │ │ │ │ │ ├── _matrix_base__map__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__map__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__marked.cpp.i │ │ │ │ │ │ ├── _matrix_base__minor.cpp.i │ │ │ │ │ │ ├── _matrix_base__noalias.cpp.i │ │ │ │ │ │ ├── _matrix_base__ones.cpp.i │ │ │ │ │ │ ├── _matrix_base__ones__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__ones__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__operator_norm.cpp.i │ │ │ │ │ │ ├── _matrix_base__part.cpp.i │ │ │ │ │ │ ├── _matrix_base__prod.cpp.i │ │ │ │ │ │ ├── _matrix_base__quick_inverse.cpp.i │ │ │ │ │ │ ├── _matrix_base__random.cpp.i │ │ │ │ │ │ ├── _matrix_base__random__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__random__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__replicate.cpp.i │ │ │ │ │ │ ├── _matrix_base__replicate__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__reshape.cpp.i │ │ │ │ │ │ ├── _matrix_base__reshape__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__reshaped__all.cpp.i │ │ │ │ │ │ ├── _matrix_base__reshaped__auto.cpp.i │ │ │ │ │ │ ├── _matrix_base__reshaped__fixed.cpp.i │ │ │ │ │ │ ├── _matrix_base__reshaped__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__reshaped__to__vector.cpp.i │ │ │ │ │ │ ├── _matrix_base__reverse.cpp.i │ │ │ │ │ │ ├── _matrix_base__right_cols__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__row.cpp.i │ │ │ │ │ │ ├── _matrix_base__rowwise.cpp.i │ │ │ │ │ │ ├── _matrix_base__segment__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__select.cpp.i │ │ │ │ │ │ ├── _matrix_base__selfadjoint_view.cpp.i │ │ │ │ │ │ ├── _matrix_base__set.cpp.i │ │ │ │ │ │ ├── _matrix_base__set_identity.cpp.i │ │ │ │ │ │ ├── _matrix_base__set_ones.cpp.i │ │ │ │ │ │ ├── _matrix_base__set_random.cpp.i │ │ │ │ │ │ ├── _matrix_base__set_zero.cpp.i │ │ │ │ │ │ ├── _matrix_base__start__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__bottom_rows.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__end.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__block__int__int__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__bottom_left_corner.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__bottom_left_corner__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__bottom_right_corner.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__bottom_right_corner__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__corner__enum.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__top_left_corner.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__top_left_corner__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__top_right_corner.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__int__top_right_corner__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__left_cols.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__right_cols.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__segment.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__start.cpp.i │ │ │ │ │ │ ├── _matrix_base__template__int__top_rows.cpp.i │ │ │ │ │ │ ├── _matrix_base__top_left_corner__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__top_right_corner__int__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__top_rows__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__transpose.cpp.i │ │ │ │ │ │ ├── _matrix_base__triangular_view.cpp.i │ │ │ │ │ │ ├── _matrix_base__zero.cpp.i │ │ │ │ │ │ ├── _matrix_base__zero__int.cpp.i │ │ │ │ │ │ ├── _matrix_base__zero__int__int.cpp.i │ │ │ │ │ │ ├── _partial_l_u__solve.cpp.i │ │ │ │ │ │ ├── _partial_piv_l_u__solve.cpp.i │ │ │ │ │ │ ├── _partial_redux__count.cpp.i │ │ │ │ │ │ ├── _partial_redux__max_coeff.cpp.i │ │ │ │ │ │ ├── _partial_redux__min_coeff.cpp.i │ │ │ │ │ │ ├── _partial_redux__norm.cpp.i │ │ │ │ │ │ ├── _partial_redux__norm2.cpp.i │ │ │ │ │ │ ├── _partial_redux__prod.cpp.i │ │ │ │ │ │ ├── _partial_redux__reverse.cpp.i │ │ │ │ │ │ ├── _partial_redux__squared_norm.cpp.i │ │ │ │ │ │ ├── _partial_redux__sum.cpp.i │ │ │ │ │ │ ├── _print_with_format.h.i │ │ │ │ │ │ ├── _q_r__solve.cpp.i │ │ │ │ │ │ ├── _real_q_z__compute.cpp.i │ │ │ │ │ │ ├── _real_schur___real_schur___matrix_type.cpp.i │ │ │ │ │ │ ├── _real_schur__compute.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver___self_adjoint_eigen_solver.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver___self_adjoint_eigen_solver___matrix_type.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver___self_adjoint_eigen_solver___matrix_type2.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver__compute___matrix_type.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver__compute___matrix_type2.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver__eigenvalues.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver__eigenvectors.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver__operator_inverse_sqrt.cpp.i │ │ │ │ │ │ ├── _self_adjoint_eigen_solver__operator_sqrt.cpp.i │ │ │ │ │ │ ├── _self_adjoint_view__eigenvalues.cpp.i │ │ │ │ │ │ ├── _self_adjoint_view__operator_norm.cpp.i │ │ │ │ │ │ ├── _slicing__arrayexpr.cpp.i │ │ │ │ │ │ ├── _slicing__custom__padding__cxx11.cpp.i │ │ │ │ │ │ ├── _slicing__rawarray__cxx11.cpp.i │ │ │ │ │ │ ├── _slicing__stdvector__cxx11.cpp.i │ │ │ │ │ │ ├── _sparse_matrix__coeffs.cpp.i │ │ │ │ │ │ ├── _topic_aliasing__block.cpp.i │ │ │ │ │ │ ├── _topic_aliasing__block__correct.cpp.i │ │ │ │ │ │ ├── _topic_aliasing__cwise.cpp.i │ │ │ │ │ │ ├── _topic_aliasing__mult1.cpp.i │ │ │ │ │ │ ├── _topic_aliasing__mult2.cpp.i │ │ │ │ │ │ ├── _topic_aliasing__mult3.cpp.i │ │ │ │ │ │ ├── _topic_aliasing__mult4.cpp.i │ │ │ │ │ │ ├── _topic_aliasing__mult5.cpp.i │ │ │ │ │ │ ├── _topic_storage_orders__example.cpp.i │ │ │ │ │ │ ├── _triangular__solve.cpp.i │ │ │ │ │ │ ├── _tridiagonalization___tridiagonalization___matrix_type.cpp.i │ │ │ │ │ │ ├── _tridiagonalization__compute.cpp.i │ │ │ │ │ │ ├── _tridiagonalization__decompose_in_place.cpp.i │ │ │ │ │ │ ├── _tridiagonalization__diagonal.cpp.i │ │ │ │ │ │ ├── _tridiagonalization__householder_coefficients.cpp.i │ │ │ │ │ │ ├── _tridiagonalization__packed_matrix.cpp.i │ │ │ │ │ │ ├── _tutorial___advanced_initialization___block.cpp.i │ │ │ │ │ │ ├── _tutorial___advanced_initialization___comma_temporary.cpp.i │ │ │ │ │ │ ├── _tutorial___advanced_initialization___join.cpp.i │ │ │ │ │ │ ├── _tutorial___advanced_initialization___lin_spaced.cpp.i │ │ │ │ │ │ ├── _tutorial___advanced_initialization___three_ways.cpp.i │ │ │ │ │ │ ├── _tutorial___advanced_initialization___zero.cpp.i │ │ │ │ │ │ ├── _tutorial___map__rowmajor.cpp.i │ │ │ │ │ │ ├── _tutorial___map__using.cpp.i │ │ │ │ │ │ ├── _tutorial___reshape_mat2_mat.cpp.i │ │ │ │ │ │ ├── _tutorial___reshape_mat2_vec.cpp.i │ │ │ │ │ │ ├── _tutorial___slicing_col.cpp.i │ │ │ │ │ │ ├── _tutorial___slicing_vec.cpp.i │ │ │ │ │ │ ├── _tutorial__commainit__01.cpp.i │ │ │ │ │ │ ├── _tutorial__commainit__01b.cpp.i │ │ │ │ │ │ ├── _tutorial__commainit__02.cpp.i │ │ │ │ │ │ ├── _tutorial__range__for__loop__1d__cxx11.cpp.i │ │ │ │ │ │ ├── _tutorial__range__for__loop__2d__cxx11.cpp.i │ │ │ │ │ │ ├── _tutorial__reshaped__vs__resize__1.cpp.i │ │ │ │ │ │ ├── _tutorial__reshaped__vs__resize__2.cpp.i │ │ │ │ │ │ ├── _tutorial__solve__matrix__inverse.cpp.i │ │ │ │ │ │ ├── _tutorial__solve__multiple__rhs.cpp.i │ │ │ │ │ │ ├── _tutorial__solve__reuse__decomposition.cpp.i │ │ │ │ │ │ ├── _tutorial__solve__singular.cpp.i │ │ │ │ │ │ ├── _tutorial__solve__triangular.cpp.i │ │ │ │ │ │ ├── _tutorial__solve__triangular__inplace.cpp.i │ │ │ │ │ │ ├── _tutorial__std__sort.cpp.i │ │ │ │ │ │ ├── _tutorial__std__sort__rows.cpp.i │ │ │ │ │ │ ├── _tutorial__std__sort__rows__cxx11.cpp.i │ │ │ │ │ │ ├── _vectorwise__reverse.cpp.i │ │ │ │ │ │ ├── _vectorwise_op__homogeneous.cpp.i │ │ │ │ │ │ ├── class___full_piv_l_u.cpp.i │ │ │ │ │ │ ├── class___l_u.cpp.i │ │ │ │ │ │ ├── class___l_u__1.cpp.i │ │ │ │ │ │ ├── class___l_u__2.cpp.i │ │ │ │ │ │ ├── compile__snippet.cpp.in.i │ │ │ │ │ │ ├── function__dyn_block.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__redux__minmax.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__transpose__aliasing.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__transpose__conjugate.cpp.i │ │ │ │ │ │ ├── tut__arithmetic__transpose__inplace.cpp.i │ │ │ │ │ │ ├── tut__matrix__assignment__resizing.cpp.i │ │ │ │ │ │ ├── tut__matrix__assignmnet__resizing.cpp.i │ │ │ │ │ │ └── ~2ekrazy.i │ │ │ │ │ ├── special__examples │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _tutorial__sparse__example.cpp.i │ │ │ │ │ │ ├── _tutorial__sparse__example__details.cpp.i │ │ │ │ │ │ └── random__cpp11.cpp.i │ │ │ │ │ ├── tutorial.cpp.i │ │ │ │ │ └── unsupported__modules.dox.i │ │ │ │ ├── eigen2.pc.in.i │ │ │ │ ├── eigen3.pc.in.i │ │ │ │ ├── failtest │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── bdcsvd__int.cpp.i │ │ │ │ │ ├── block__nonconst__ctor__on__const__xpr__0.cpp.i │ │ │ │ │ ├── block__nonconst__ctor__on__const__xpr__1.cpp.i │ │ │ │ │ ├── block__nonconst__ctor__on__const__xpr__2.cpp.i │ │ │ │ │ ├── block__on__const__type__actually__const__0.cpp.i │ │ │ │ │ ├── block__on__const__type__actually__const__1.cpp.i │ │ │ │ │ ├── colpivqr__int.cpp.i │ │ │ │ │ ├── const__qualified__block__method__retval__0.cpp.i │ │ │ │ │ ├── const__qualified__block__method__retval__1.cpp.i │ │ │ │ │ ├── const__qualified__diagonal__method__retval.cpp.i │ │ │ │ │ ├── const__qualified__transpose__method__retval.cpp.i │ │ │ │ │ ├── cwiseunaryview__nonconst__ctor__on__const__xpr.cpp.i │ │ │ │ │ ├── cwiseunaryview__on__const__type__actually__const.cpp.i │ │ │ │ │ ├── diagonal__nonconst__ctor__on__const__xpr.cpp.i │ │ │ │ │ ├── diagonal__on__const__type__actually__const.cpp.i │ │ │ │ │ ├── eigensolver__cplx.cpp.i │ │ │ │ │ ├── eigensolver__int.cpp.i │ │ │ │ │ ├── failtest__sanity__check.cpp.i │ │ │ │ │ ├── fullpivlu__int.cpp.i │ │ │ │ │ ├── fullpivqr__int.cpp.i │ │ │ │ │ ├── initializer__list__1.cpp.i │ │ │ │ │ ├── initializer__list__2.cpp.i │ │ │ │ │ ├── jacobisvd__int.cpp.i │ │ │ │ │ ├── ldlt__int.cpp.i │ │ │ │ │ ├── llt__int.cpp.i │ │ │ │ │ ├── map__nonconst__ctor__on__const__ptr__0.cpp.i │ │ │ │ │ ├── map__nonconst__ctor__on__const__ptr__1.cpp.i │ │ │ │ │ ├── map__nonconst__ctor__on__const__ptr__2.cpp.i │ │ │ │ │ ├── map__nonconst__ctor__on__const__ptr__3.cpp.i │ │ │ │ │ ├── map__nonconst__ctor__on__const__ptr__4.cpp.i │ │ │ │ │ ├── map__on__const__type__actually__const__0.cpp.i │ │ │ │ │ ├── map__on__const__type__actually__const__1.cpp.i │ │ │ │ │ ├── partialpivlu__int.cpp.i │ │ │ │ │ ├── qr__int.cpp.i │ │ │ │ │ ├── ref__1.cpp.i │ │ │ │ │ ├── ref__2.cpp.i │ │ │ │ │ ├── ref__3.cpp.i │ │ │ │ │ ├── ref__4.cpp.i │ │ │ │ │ ├── ref__5.cpp.i │ │ │ │ │ ├── selfadjointview__nonconst__ctor__on__const__xpr.cpp.i │ │ │ │ │ ├── selfadjointview__on__const__type__actually__const.cpp.i │ │ │ │ │ ├── sparse__ref__1.cpp.i │ │ │ │ │ ├── sparse__ref__2.cpp.i │ │ │ │ │ ├── sparse__ref__3.cpp.i │ │ │ │ │ ├── sparse__ref__4.cpp.i │ │ │ │ │ ├── sparse__ref__5.cpp.i │ │ │ │ │ ├── sparse__storage__mismatch.cpp.i │ │ │ │ │ ├── swap__1.cpp.i │ │ │ │ │ ├── swap__2.cpp.i │ │ │ │ │ ├── ternary__1.cpp.i │ │ │ │ │ ├── ternary__2.cpp.i │ │ │ │ │ ├── transpose__nonconst__ctor__on__const__xpr.cpp.i │ │ │ │ │ ├── transpose__on__const__type__actually__const.cpp.i │ │ │ │ │ ├── triangularview__nonconst__ctor__on__const__xpr.cpp.i │ │ │ │ │ └── triangularview__on__const__type__actually__const.cpp.i │ │ │ │ ├── lapack │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── cholesky.cpp.i │ │ │ │ │ ├── clacgv.f.i │ │ │ │ │ ├── cladiv.f.i │ │ │ │ │ ├── clarf.f.i │ │ │ │ │ ├── clarfb.f.i │ │ │ │ │ ├── clarfg.f.i │ │ │ │ │ ├── clarft.f.i │ │ │ │ │ ├── complex__double.cpp.i │ │ │ │ │ ├── complex__single.cpp.i │ │ │ │ │ ├── dladiv.f.i │ │ │ │ │ ├── dlamch.f.i │ │ │ │ │ ├── dlapy2.f.i │ │ │ │ │ ├── dlapy3.f.i │ │ │ │ │ ├── dlarf.f.i │ │ │ │ │ ├── dlarfb.f.i │ │ │ │ │ ├── dlarfg.f.i │ │ │ │ │ ├── dlarft.f.i │ │ │ │ │ ├── double.cpp.i │ │ │ │ │ ├── dsecnd___n_o_n_e.f.i │ │ │ │ │ ├── eigenvalues.cpp.i │ │ │ │ │ ├── ilaclc.f.i │ │ │ │ │ ├── ilaclr.f.i │ │ │ │ │ ├── iladlc.f.i │ │ │ │ │ ├── iladlr.f.i │ │ │ │ │ ├── ilaslc.f.i │ │ │ │ │ ├── ilaslr.f.i │ │ │ │ │ ├── ilazlc.f.i │ │ │ │ │ ├── ilazlr.f.i │ │ │ │ │ ├── lapack__common.h.i │ │ │ │ │ ├── lu.cpp.i │ │ │ │ │ ├── second___n_o_n_e.f.i │ │ │ │ │ ├── single.cpp.i │ │ │ │ │ ├── sladiv.f.i │ │ │ │ │ ├── slamch.f.i │ │ │ │ │ ├── slapy2.f.i │ │ │ │ │ ├── slapy3.f.i │ │ │ │ │ ├── slarf.f.i │ │ │ │ │ ├── slarfb.f.i │ │ │ │ │ ├── slarfg.f.i │ │ │ │ │ ├── slarft.f.i │ │ │ │ │ ├── svd.cpp.i │ │ │ │ │ ├── zlacgv.f.i │ │ │ │ │ ├── zladiv.f.i │ │ │ │ │ ├── zlarf.f.i │ │ │ │ │ ├── zlarfb.f.i │ │ │ │ │ ├── zlarfg.f.i │ │ │ │ │ └── zlarft.f.i │ │ │ │ ├── scripts │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── buildtests.in.i │ │ │ │ │ ├── cdashtesting.cmake.in.i │ │ │ │ │ ├── check.in.i │ │ │ │ │ ├── debug.in.i │ │ │ │ │ ├── eigen__gen__credits.cpp.i │ │ │ │ │ ├── eigen__gen__credits.i │ │ │ │ │ ├── eigen__gen__docs.i │ │ │ │ │ ├── eigen__gen__split__test__help.cmake.i │ │ │ │ │ ├── eigen__monitor__perf.sh.i │ │ │ │ │ ├── maketests.in.i │ │ │ │ │ ├── mctestr.in.i │ │ │ │ │ ├── release.in.i │ │ │ │ │ └── relicense.py.i │ │ │ │ ├── signature__of__eigen3__matrix__library.i │ │ │ │ ├── src │ │ │ │ │ ├── _all.h.i │ │ │ │ │ ├── _all.i │ │ │ │ │ ├── _block.h.i │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── _core.h.i │ │ │ │ │ ├── _core.i │ │ │ │ │ ├── _core │ │ │ │ │ │ ├── _block.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _cast.h.i │ │ │ │ │ │ ├── _coeffs.h.i │ │ │ │ │ │ ├── _column.h.i │ │ │ │ │ │ ├── _conjugate.h.i │ │ │ │ │ │ ├── _copy_helper.h.i │ │ │ │ │ │ ├── _diagonal_coeffs.h.i │ │ │ │ │ │ ├── _diagonal_matrix.h.i │ │ │ │ │ │ ├── _difference.h.i │ │ │ │ │ │ ├── _dot.h.i │ │ │ │ │ │ ├── _dyn_block.h.i │ │ │ │ │ │ ├── _eval.h.i │ │ │ │ │ │ ├── _from_array.h.i │ │ │ │ │ │ ├── _fuzzy.h.i │ │ │ │ │ │ ├── _i_o.h.i │ │ │ │ │ │ ├── _identity.h.i │ │ │ │ │ │ ├── _loop.h.i │ │ │ │ │ │ ├── _map.h.i │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ │ ├── _matrix_base.h.i │ │ │ │ │ │ ├── _matrix_ops.h.i │ │ │ │ │ │ ├── _matrix_ref.h.i │ │ │ │ │ │ ├── _matrix_storage.h.i │ │ │ │ │ │ ├── _minor.h.i │ │ │ │ │ │ ├── _num_traits.h.i │ │ │ │ │ │ ├── _numeric.h.i │ │ │ │ │ │ ├── _object.h.i │ │ │ │ │ │ ├── _ones.h.i │ │ │ │ │ │ ├── _operator_equals.h.i │ │ │ │ │ │ ├── _opposite.h.i │ │ │ │ │ │ ├── _product.h.i │ │ │ │ │ │ ├── _random.h.i │ │ │ │ │ │ ├── _row.h.i │ │ │ │ │ │ ├── _scalar_multiple.h.i │ │ │ │ │ │ ├── _scalar_ops.h.i │ │ │ │ │ │ ├── _sum.h.i │ │ │ │ │ │ ├── _trace.h.i │ │ │ │ │ │ ├── _transpose.h.i │ │ │ │ │ │ ├── _util.h.i │ │ │ │ │ │ ├── _wrap_array.h.i │ │ │ │ │ │ └── _zero.h.i │ │ │ │ │ ├── _manip.i │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ ├── _matrix_base.h.i │ │ │ │ │ ├── _matrix_ops.h.i │ │ │ │ │ ├── _matrix_xpr.h.i │ │ │ │ │ ├── _minor.h.i │ │ │ │ │ ├── _row_and_col.h.i │ │ │ │ │ ├── _scalar_ops.h.i │ │ │ │ │ ├── _util.h.i │ │ │ │ │ ├── _vector.h.i │ │ │ │ │ └── internal │ │ │ │ │ │ ├── _block.h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _column.h.i │ │ │ │ │ │ ├── _conjugate.h.i │ │ │ │ │ │ ├── _ei_object.h.i │ │ │ │ │ │ ├── _eigen_base.h.i │ │ │ │ │ │ ├── _eval.h.i │ │ │ │ │ │ ├── _loop.h.i │ │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ │ ├── _matrix_alias.h.i │ │ │ │ │ │ ├── _matrix_base.h.i │ │ │ │ │ │ ├── _matrix_ops.h.i │ │ │ │ │ │ ├── _matrix_ref.h.i │ │ │ │ │ │ ├── _matrix_storage.h.i │ │ │ │ │ │ ├── _matrix_xpr.h.i │ │ │ │ │ │ ├── _minor.h.i │ │ │ │ │ │ ├── _numeric.h.i │ │ │ │ │ │ ├── _object.h.i │ │ │ │ │ │ ├── _row.h.i │ │ │ │ │ │ ├── _row_and_col.h.i │ │ │ │ │ │ ├── _scalar_ops.h.i │ │ │ │ │ │ ├── _transpose.h.i │ │ │ │ │ │ ├── _util.h.i │ │ │ │ │ │ └── _vector.h.i │ │ │ │ ├── test │ │ │ │ │ ├── _annoying_scalar.h.i │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── adjoint.cpp.i │ │ │ │ │ ├── alignedbox.cpp.i │ │ │ │ │ ├── array.cpp.i │ │ │ │ │ ├── array__cwise.cpp.i │ │ │ │ │ ├── array__for__matrix.cpp.i │ │ │ │ │ ├── array__of__string.cpp.i │ │ │ │ │ ├── array__replicate.cpp.i │ │ │ │ │ ├── array__reverse.cpp.i │ │ │ │ │ ├── bandmatrix.cpp.i │ │ │ │ │ ├── basicstuff.cpp.i │ │ │ │ │ ├── bdcsvd.cpp.i │ │ │ │ │ ├── bicgstab.cpp.i │ │ │ │ │ ├── block.cpp.i │ │ │ │ │ ├── boostmultiprec.cpp.i │ │ │ │ │ ├── bug1213.cpp.i │ │ │ │ │ ├── bug1213.h.i │ │ │ │ │ ├── bug1213__main.cpp.i │ │ │ │ │ ├── bug__132.cpp.i │ │ │ │ │ ├── buildtests.in.i │ │ │ │ │ ├── cholesky.cpp.i │ │ │ │ │ ├── cholmod__support.cpp.i │ │ │ │ │ ├── commainitializer.cpp.i │ │ │ │ │ ├── conjugate__gradient.cpp.i │ │ │ │ │ ├── conservative__resize.cpp.i │ │ │ │ │ ├── constructor.cpp.i │ │ │ │ │ ├── corners.cpp.i │ │ │ │ │ ├── ctorleak.cpp.i │ │ │ │ │ ├── cuda__basic.cu.i │ │ │ │ │ ├── cuda__common.h.i │ │ │ │ │ ├── cwiseop.cpp.i │ │ │ │ │ ├── dense__storage.cpp.i │ │ │ │ │ ├── dense_l_m.cpp.i │ │ │ │ │ ├── determinant.cpp.i │ │ │ │ │ ├── diagonal.cpp.i │ │ │ │ │ ├── diagonal__matrix__variadic__ctor.cpp.i │ │ │ │ │ ├── diagonalmatrices.cpp.i │ │ │ │ │ ├── dontalign.cpp.i │ │ │ │ │ ├── dynalloc.cpp.i │ │ │ │ │ ├── eigen2 │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── adjoint.cpp.i │ │ │ │ │ │ ├── alignedbox.cpp.i │ │ │ │ │ │ ├── array.cpp.i │ │ │ │ │ │ ├── basicstuff.cpp.i │ │ │ │ │ │ ├── bug__132.cpp.i │ │ │ │ │ │ ├── cholesky.cpp.i │ │ │ │ │ │ ├── commainitializer.cpp.i │ │ │ │ │ │ ├── cwiseop.cpp.i │ │ │ │ │ │ ├── determinant.cpp.i │ │ │ │ │ │ ├── dynalloc.cpp.i │ │ │ │ │ │ ├── eigen2__adjoint.cpp.i │ │ │ │ │ │ ├── eigen2__alignedbox.cpp.i │ │ │ │ │ │ ├── eigen2__array.cpp.i │ │ │ │ │ │ ├── eigen2__basicstuff.cpp.i │ │ │ │ │ │ ├── eigen2__bug__132.cpp.i │ │ │ │ │ │ ├── eigen2__cholesky.cpp.i │ │ │ │ │ │ ├── eigen2__commainitializer.cpp.i │ │ │ │ │ │ ├── eigen2__cwiseop.cpp.i │ │ │ │ │ │ ├── eigen2__determinant.cpp.i │ │ │ │ │ │ ├── eigen2__dynalloc.cpp.i │ │ │ │ │ │ ├── eigen2__eigensolver.cpp.i │ │ │ │ │ │ ├── eigen2__first__aligned.cpp.i │ │ │ │ │ │ ├── eigen2__geometry.cpp.i │ │ │ │ │ │ ├── eigen2__geometry__with__eigen2__prefix.cpp.i │ │ │ │ │ │ ├── eigen2__hyperplane.cpp.i │ │ │ │ │ │ ├── eigen2__inverse.cpp.i │ │ │ │ │ │ ├── eigen2__linearstructure.cpp.i │ │ │ │ │ │ ├── eigen2__lu.cpp.i │ │ │ │ │ │ ├── eigen2__map.cpp.i │ │ │ │ │ │ ├── eigen2__meta.cpp.i │ │ │ │ │ │ ├── eigen2__miscmatrices.cpp.i │ │ │ │ │ │ ├── eigen2__mixingtypes.cpp.i │ │ │ │ │ │ ├── eigen2__newstdvector.cpp.i │ │ │ │ │ │ ├── eigen2__nomalloc.cpp.i │ │ │ │ │ │ ├── eigen2__packetmath.cpp.i │ │ │ │ │ │ ├── eigen2__parametrizedline.cpp.i │ │ │ │ │ │ ├── eigen2__prec__inverse__4x4.cpp.i │ │ │ │ │ │ ├── eigen2__product__large.cpp.i │ │ │ │ │ │ ├── eigen2__product__small.cpp.i │ │ │ │ │ │ ├── eigen2__qr.cpp.i │ │ │ │ │ │ ├── eigen2__qtvector.cpp.i │ │ │ │ │ │ ├── eigen2__regression.cpp.i │ │ │ │ │ │ ├── eigen2__sizeof.cpp.i │ │ │ │ │ │ ├── eigen2__smallvectors.cpp.i │ │ │ │ │ │ ├── eigen2__sparse__basic.cpp.i │ │ │ │ │ │ ├── eigen2__sparse__product.cpp.i │ │ │ │ │ │ ├── eigen2__sparse__solvers.cpp.i │ │ │ │ │ │ ├── eigen2__sparse__vector.cpp.i │ │ │ │ │ │ ├── eigen2__stdvector.cpp.i │ │ │ │ │ │ ├── eigen2__submatrices.cpp.i │ │ │ │ │ │ ├── eigen2__sum.cpp.i │ │ │ │ │ │ ├── eigen2__svd.cpp.i │ │ │ │ │ │ ├── eigen2__swap.cpp.i │ │ │ │ │ │ ├── eigen2__triangular.cpp.i │ │ │ │ │ │ ├── eigen2__unalignedassert.cpp.i │ │ │ │ │ │ ├── eigen2__visitor.cpp.i │ │ │ │ │ │ ├── eigensolver.cpp.i │ │ │ │ │ │ ├── first__aligned.cpp.i │ │ │ │ │ │ ├── geometry.cpp.i │ │ │ │ │ │ ├── gsl__helper.h.i │ │ │ │ │ │ ├── hyperplane.cpp.i │ │ │ │ │ │ ├── inverse.cpp.i │ │ │ │ │ │ ├── linearstructure.cpp.i │ │ │ │ │ │ ├── lu.cpp.i │ │ │ │ │ │ ├── main.h.i │ │ │ │ │ │ ├── map.cpp.i │ │ │ │ │ │ ├── meta.cpp.i │ │ │ │ │ │ ├── miscmatrices.cpp.i │ │ │ │ │ │ ├── mixingtypes.cpp.i │ │ │ │ │ │ ├── newstdvector.cpp.i │ │ │ │ │ │ ├── nomalloc.cpp.i │ │ │ │ │ │ ├── packetmath.cpp.i │ │ │ │ │ │ ├── parametrizedline.cpp.i │ │ │ │ │ │ ├── prec__inverse__4x4.cpp.i │ │ │ │ │ │ ├── product.h.i │ │ │ │ │ │ ├── product__large.cpp.i │ │ │ │ │ │ ├── product__small.cpp.i │ │ │ │ │ │ ├── qr.cpp.i │ │ │ │ │ │ ├── qtvector.cpp.i │ │ │ │ │ │ ├── regression.cpp.i │ │ │ │ │ │ ├── runtest.sh.i │ │ │ │ │ │ ├── sizeof.cpp.i │ │ │ │ │ │ ├── smallvectors.cpp.i │ │ │ │ │ │ ├── sparse.h.i │ │ │ │ │ │ ├── sparse__basic.cpp.i │ │ │ │ │ │ ├── sparse__product.cpp.i │ │ │ │ │ │ ├── sparse__solvers.cpp.i │ │ │ │ │ │ ├── sparse__vector.cpp.i │ │ │ │ │ │ ├── stdvector.cpp.i │ │ │ │ │ │ ├── submatrices.cpp.i │ │ │ │ │ │ ├── sum.cpp.i │ │ │ │ │ │ ├── svd.cpp.i │ │ │ │ │ │ ├── swap.cpp.i │ │ │ │ │ │ ├── testsuite.cmake.i │ │ │ │ │ │ ├── triangular.cpp.i │ │ │ │ │ │ ├── unalignedassert.cpp.i │ │ │ │ │ │ ├── vectorization__logic.cpp.i │ │ │ │ │ │ └── visitor.cpp.i │ │ │ │ │ ├── eigen2support.cpp.i │ │ │ │ │ ├── eigensolver.cpp.i │ │ │ │ │ ├── eigensolver__complex.cpp.i │ │ │ │ │ ├── eigensolver__generalized__real.cpp.i │ │ │ │ │ ├── eigensolver__generic.cpp.i │ │ │ │ │ ├── eigensolver__selfadjoint.cpp.i │ │ │ │ │ ├── evaluator__common.h.i │ │ │ │ │ ├── evaluators.cpp.i │ │ │ │ │ ├── exceptions.cpp.i │ │ │ │ │ ├── fastmath.cpp.i │ │ │ │ │ ├── first__aligned.cpp.i │ │ │ │ │ ├── geo__alignedbox.cpp.i │ │ │ │ │ ├── geo__eulerangles.cpp.i │ │ │ │ │ ├── geo__homogeneous.cpp.i │ │ │ │ │ ├── geo__hyperplane.cpp.i │ │ │ │ │ ├── geo__orthomethods.cpp.i │ │ │ │ │ ├── geo__parametrizedline.cpp.i │ │ │ │ │ ├── geo__quaternion.cpp.i │ │ │ │ │ ├── geo__transformations.cpp.i │ │ │ │ │ ├── geometry.cpp.i │ │ │ │ │ ├── gpu__basic.cu.i │ │ │ │ │ ├── gpu__common.h.i │ │ │ │ │ ├── gsl__helper.h.i │ │ │ │ │ ├── half__float.cpp.i │ │ │ │ │ ├── hessenberg.cpp.i │ │ │ │ │ ├── hip__basic.cu.i │ │ │ │ │ ├── hip__common.h.i │ │ │ │ │ ├── householder.cpp.i │ │ │ │ │ ├── hyperplane.cpp.i │ │ │ │ │ ├── incomplete__cholesky.cpp.i │ │ │ │ │ ├── indexed__view.cpp.i │ │ │ │ │ ├── initializer__list__construction.cpp.i │ │ │ │ │ ├── inplace__decomposition.cpp.i │ │ │ │ │ ├── integer__types.cpp.i │ │ │ │ │ ├── inverse.cpp.i │ │ │ │ │ ├── ioformat.cpp.i │ │ │ │ │ ├── is__same__dense.cpp.i │ │ │ │ │ ├── jacobi.cpp.i │ │ │ │ │ ├── jacobisvd.cpp.i │ │ │ │ │ ├── klu__support.cpp.i │ │ │ │ │ ├── levenberg__marquardt.cpp.i │ │ │ │ │ ├── linearstructure.cpp.i │ │ │ │ │ ├── lscg.cpp.i │ │ │ │ │ ├── lu.cpp.i │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ ├── main.h.i │ │ │ │ │ ├── maketests.in.i │ │ │ │ │ ├── map.cpp.i │ │ │ │ │ ├── mapped__matrix.cpp.i │ │ │ │ │ ├── mapstaticmethods.cpp.i │ │ │ │ │ ├── mapstride.cpp.i │ │ │ │ │ ├── matrixmanip.cpp.i │ │ │ │ │ ├── matrixops.cpp.i │ │ │ │ │ ├── mctestr.in.i │ │ │ │ │ ├── meta.cpp.i │ │ │ │ │ ├── metis__support.cpp.i │ │ │ │ │ ├── miscmatrices.cpp.i │ │ │ │ │ ├── mixingtypes.cpp.i │ │ │ │ │ ├── mpl2only.cpp.i │ │ │ │ │ ├── nestbyvalue.cpp.i │ │ │ │ │ ├── nesting__ops.cpp.i │ │ │ │ │ ├── newstdvector.cpp.i │ │ │ │ │ ├── nomalloc.cpp.i │ │ │ │ │ ├── nullary.cpp.i │ │ │ │ │ ├── num__dimensions.cpp.i │ │ │ │ │ ├── numext.cpp.i │ │ │ │ │ ├── packetmath.cpp.i │ │ │ │ │ ├── parametrizedline.cpp.i │ │ │ │ │ ├── pardiso__support.cpp.i │ │ │ │ │ ├── pastix__support.cpp.i │ │ │ │ │ ├── permutationmatrices.cpp.i │ │ │ │ │ ├── prec__inverse__4x4.cpp.i │ │ │ │ │ ├── prod.cpp.i │ │ │ │ │ ├── product.cpp.i │ │ │ │ │ ├── product.h.i │ │ │ │ │ ├── product__extra.cpp.i │ │ │ │ │ ├── product__large.cpp.i │ │ │ │ │ ├── product__mmtr.cpp.i │ │ │ │ │ ├── product__notemporary.cpp.i │ │ │ │ │ ├── product__selfadjoint.cpp.i │ │ │ │ │ ├── product__small.cpp.i │ │ │ │ │ ├── product__symm.cpp.i │ │ │ │ │ ├── product__syrk.cpp.i │ │ │ │ │ ├── product__triangular.cpp.i │ │ │ │ │ ├── product__trmm.cpp.i │ │ │ │ │ ├── product__trmv.cpp.i │ │ │ │ │ ├── product__trsm.cpp.i │ │ │ │ │ ├── product__trsolve.cpp.i │ │ │ │ │ ├── qr.cpp.i │ │ │ │ │ ├── qr__colpivoting.cpp.i │ │ │ │ │ ├── qr__fullpivoting.cpp.i │ │ │ │ │ ├── qtvector.cpp.i │ │ │ │ │ ├── rand.cpp.i │ │ │ │ │ ├── real__qz.cpp.i │ │ │ │ │ ├── redux.cpp.i │ │ │ │ │ ├── ref.cpp.i │ │ │ │ │ ├── regression.cpp.i │ │ │ │ │ ├── reshape.cpp.i │ │ │ │ │ ├── resize.cpp.i │ │ │ │ │ ├── reverse.cpp.i │ │ │ │ │ ├── rrqr.cpp.i │ │ │ │ │ ├── runtest.sh.i │ │ │ │ │ ├── rvalue__types.cpp.i │ │ │ │ │ ├── schur__complex.cpp.i │ │ │ │ │ ├── schur__real.cpp.i │ │ │ │ │ ├── selfadjoint.cpp.i │ │ │ │ │ ├── simplicial__cholesky.cpp.i │ │ │ │ │ ├── sizeof.cpp.i │ │ │ │ │ ├── sizeoverflow.cpp.i │ │ │ │ │ ├── smallvectors.cpp.i │ │ │ │ │ ├── solverbase.h.i │ │ │ │ │ ├── sparse.cpp.i │ │ │ │ │ ├── sparse.h.i │ │ │ │ │ ├── sparse__basic.cpp.i │ │ │ │ │ ├── sparse__block.cpp.i │ │ │ │ │ ├── sparse__permutations.cpp.i │ │ │ │ │ ├── sparse__product.cpp.i │ │ │ │ │ ├── sparse__ref.cpp.i │ │ │ │ │ ├── sparse__solver.h.i │ │ │ │ │ ├── sparse__solvers.cpp.i │ │ │ │ │ ├── sparse__vector.cpp.i │ │ │ │ │ ├── sparse_l_m.cpp.i │ │ │ │ │ ├── sparselu.cpp.i │ │ │ │ │ ├── sparseqr.cpp.i │ │ │ │ │ ├── special__numbers.cpp.i │ │ │ │ │ ├── split__test__helper.h.i │ │ │ │ │ ├── spqr__support.cpp.i │ │ │ │ │ ├── stable__norm.cpp.i │ │ │ │ │ ├── stddeque.cpp.i │ │ │ │ │ ├── stddeque__overload.cpp.i │ │ │ │ │ ├── stdlist.cpp.i │ │ │ │ │ ├── stdlist__overload.cpp.i │ │ │ │ │ ├── stdvector.cpp.i │ │ │ │ │ ├── stdvector__overload.cpp.i │ │ │ │ │ ├── stl__iterators.cpp.i │ │ │ │ │ ├── submatrices.cpp.i │ │ │ │ │ ├── sum.cpp.i │ │ │ │ │ ├── superlu__support.cpp.i │ │ │ │ │ ├── svd.cpp.i │ │ │ │ │ ├── svd__common.h.i │ │ │ │ │ ├── svd__fill.h.i │ │ │ │ │ ├── swap.cpp.i │ │ │ │ │ ├── symbolic__index.cpp.i │ │ │ │ │ ├── testsuite.cmake.i │ │ │ │ │ ├── triangular.cpp.i │ │ │ │ │ ├── type__alias.cpp.i │ │ │ │ │ ├── umeyama.cpp.i │ │ │ │ │ ├── umfpack__support.cpp.i │ │ │ │ │ ├── unalignedassert.cpp.i │ │ │ │ │ ├── unalignedcount.cpp.i │ │ │ │ │ ├── upperbidiagonalization.cpp.i │ │ │ │ │ ├── vectorization__logic.cpp.i │ │ │ │ │ ├── vectorops.cpp.i │ │ │ │ │ ├── vectorwiseop.cpp.i │ │ │ │ │ ├── visitor.cpp.i │ │ │ │ │ └── zerosized.cpp.i │ │ │ │ ├── tvmet-1.7.1 │ │ │ │ │ ├── _a_u_t_h_o_r_s.i │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── _c_o_p_y_i_n_g.i │ │ │ │ │ ├── _change_log.1.i │ │ │ │ │ ├── _change_log.i │ │ │ │ │ ├── _i_n_s_t_a_l_l.i │ │ │ │ │ ├── _l_i_c_e_n_s_e.i │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ ├── _n_e_w_s.i │ │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ │ ├── _t_h_a_n_k_s.i │ │ │ │ │ ├── aclocal.m4.i │ │ │ │ │ ├── benchmark │ │ │ │ │ │ ├── _b_t_l-20030124.patch.i │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ └── _makefile.in.i │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ac__c__long__long.m4.i │ │ │ │ │ │ ├── ac__create__prefix__config__h.m4.i │ │ │ │ │ │ ├── ac__cxx__have__complex.m4.i │ │ │ │ │ │ ├── ac__cxx__have__complex__math1.m4.i │ │ │ │ │ │ ├── ac__cxx__have__complex__math2.m4.i │ │ │ │ │ │ ├── ac__cxx__have__ieee__math.m4.i │ │ │ │ │ │ ├── ac__cxx__have__mutable.m4.i │ │ │ │ │ │ ├── ac__cxx__have__namespaces.m4.i │ │ │ │ │ │ ├── ac__cxx__have__sysv__math.m4.i │ │ │ │ │ │ ├── ac__cxx__partial__specialization.m4.i │ │ │ │ │ │ ├── ac__cxx__typename.m4.i │ │ │ │ │ │ ├── ac__prog__cxx__intel.m4.i │ │ │ │ │ │ ├── ac__prog__cxx__kai.m4.i │ │ │ │ │ │ ├── ac__prog__cxx__pgi.m4.i │ │ │ │ │ │ ├── ac__set__compiler.m4.i │ │ │ │ │ │ ├── config.guess.i │ │ │ │ │ │ ├── config.h.in.i │ │ │ │ │ │ ├── config.sub.i │ │ │ │ │ │ ├── depcomp.i │ │ │ │ │ │ ├── install-sh.i │ │ │ │ │ │ ├── ltmain.sh.i │ │ │ │ │ │ ├── missing.i │ │ │ │ │ │ └── op__doxygen__doc.m4.i │ │ │ │ │ ├── configure.ac.i │ │ │ │ │ ├── configure.d │ │ │ │ │ ├── configure.i │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── _doxyfile.in.i │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ ├── _util.h.i │ │ │ │ │ │ ├── aat.png.i │ │ │ │ │ │ ├── ata.png.i │ │ │ │ │ │ ├── axpy.png.i │ │ │ │ │ │ ├── benchmark.dox.i │ │ │ │ │ │ ├── build.dox.i │ │ │ │ │ │ ├── compiler.dox.i │ │ │ │ │ │ ├── dox__functions.cc.i │ │ │ │ │ │ ├── dox__operators.cc.i │ │ │ │ │ │ ├── faq.dox.i │ │ │ │ │ │ ├── footer.html.in.i │ │ │ │ │ │ ├── header.html.i │ │ │ │ │ │ ├── intro.dox.i │ │ │ │ │ │ ├── license.dox.i │ │ │ │ │ │ ├── links.dox.i │ │ │ │ │ │ ├── matrix__matrix.png.i │ │ │ │ │ │ ├── matrix__vector.png.i │ │ │ │ │ │ ├── misc.dox.i │ │ │ │ │ │ ├── notes.dox.i │ │ │ │ │ │ ├── projects.dox.i │ │ │ │ │ │ ├── tvmet.css.i │ │ │ │ │ │ ├── tvmet.sty.in.i │ │ │ │ │ │ ├── usage.dox.i │ │ │ │ │ │ └── works.dox.i │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ ├── alias.cc.i │ │ │ │ │ │ ├── aliasing.cc.i │ │ │ │ │ │ ├── cmm.cc.i │ │ │ │ │ │ ├── cmv.cc.i │ │ │ │ │ │ ├── diag.cc.i │ │ │ │ │ │ ├── frob__matrix__norm.cc.i │ │ │ │ │ │ ├── hspiess.cc.i │ │ │ │ │ │ ├── matrix__col.cc.i │ │ │ │ │ │ ├── mm.cc.i │ │ │ │ │ │ ├── mv.cc.i │ │ │ │ │ │ ├── ray.cc.i │ │ │ │ │ │ ├── redwards.cc.i │ │ │ │ │ │ ├── xpr__print__m1.cc.i │ │ │ │ │ │ ├── xpr__print__m2.cc.i │ │ │ │ │ │ ├── xpr__print__m3.cc.i │ │ │ │ │ │ ├── xpr__print__m4.cc.i │ │ │ │ │ │ ├── xpr__print__mv1.cc.i │ │ │ │ │ │ ├── xpr__print__mv2.cc.i │ │ │ │ │ │ ├── xpr__print__v1.cc.i │ │ │ │ │ │ ├── xpr__print__v2.cc.i │ │ │ │ │ │ ├── xpr__print__v3.cc.i │ │ │ │ │ │ └── xpr__print__v4.cc.i │ │ │ │ │ ├── include │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ └── tvmet │ │ │ │ │ │ │ ├── _alias_proxy.h.i │ │ │ │ │ │ │ ├── _binary_functionals.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _comma_initializer.h.i │ │ │ │ │ │ │ ├── _compile_time_error.h.i │ │ │ │ │ │ │ ├── _extremum.h.i │ │ │ │ │ │ │ ├── _functional.h.i │ │ │ │ │ │ │ ├── _io.h.i │ │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ │ │ ├── _matrix_binary_functions.h.i │ │ │ │ │ │ │ ├── _matrix_eval.h.i │ │ │ │ │ │ │ ├── _matrix_functions.h.i │ │ │ │ │ │ │ ├── _matrix_impl.h.i │ │ │ │ │ │ │ ├── _matrix_operators.h.i │ │ │ │ │ │ │ ├── _matrix_unary_functions.h.i │ │ │ │ │ │ │ ├── _numeric_traits.h.i │ │ │ │ │ │ │ ├── _run_time_error.h.i │ │ │ │ │ │ │ ├── _traits.h.i │ │ │ │ │ │ │ ├── _traits_base.h.i │ │ │ │ │ │ │ ├── _tvmet_base.h.i │ │ │ │ │ │ │ ├── _type_promotion.h.i │ │ │ │ │ │ │ ├── _unary_functionals.h.i │ │ │ │ │ │ │ ├── _vector.h.i │ │ │ │ │ │ │ ├── _vector_binary_functions.h.i │ │ │ │ │ │ │ ├── _vector_eval.h.i │ │ │ │ │ │ │ ├── _vector_functions.h.i │ │ │ │ │ │ │ ├── _vector_impl.h.i │ │ │ │ │ │ │ ├── _vector_operators.h.i │ │ │ │ │ │ │ ├── _vector_unary_functions.h.i │ │ │ │ │ │ │ ├── config.h.cmake.i │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── config-gcc.h.i │ │ │ │ │ │ │ ├── config-icc.h.i │ │ │ │ │ │ │ ├── config-kcc.h.i │ │ │ │ │ │ │ ├── config-pgi.h.i │ │ │ │ │ │ │ ├── config-vc71.h.i │ │ │ │ │ │ │ └── config-vc71.h.in.i │ │ │ │ │ │ │ ├── loop │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _gemm.h.i │ │ │ │ │ │ │ ├── _gemmt.h.i │ │ │ │ │ │ │ ├── _gemtm.h.i │ │ │ │ │ │ │ ├── _gemtv.h.i │ │ │ │ │ │ │ ├── _gemv.h.i │ │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ │ │ └── _vector.h.i │ │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _gemm.h.i │ │ │ │ │ │ │ ├── _gemmt.h.i │ │ │ │ │ │ │ ├── _gemtm.h.i │ │ │ │ │ │ │ ├── _gemtv.h.i │ │ │ │ │ │ │ ├── _gemv.h.i │ │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ │ │ └── _vector.h.i │ │ │ │ │ │ │ ├── tvmet.h.i │ │ │ │ │ │ │ ├── util │ │ │ │ │ │ │ ├── _general.h.i │ │ │ │ │ │ │ ├── _incrementor.h.i │ │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── _random.h.i │ │ │ │ │ │ │ └── _timer.h.i │ │ │ │ │ │ │ └── xpr │ │ │ │ │ │ │ ├── _bin_operator.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _eval.h.i │ │ │ │ │ │ │ ├── _identity.h.i │ │ │ │ │ │ │ ├── _literal.h.i │ │ │ │ │ │ │ ├── _m_m_product.h.i │ │ │ │ │ │ │ ├── _m_m_product_transposed.h.i │ │ │ │ │ │ │ ├── _m_mt_product.h.i │ │ │ │ │ │ │ ├── _m_v_product.h.i │ │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── _matrix.h.i │ │ │ │ │ │ │ ├── _matrix_binary_functions.h.i │ │ │ │ │ │ │ ├── _matrix_col.h.i │ │ │ │ │ │ │ ├── _matrix_diag.h.i │ │ │ │ │ │ │ ├── _matrix_functions.h.i │ │ │ │ │ │ │ ├── _matrix_operators.h.i │ │ │ │ │ │ │ ├── _matrix_row.h.i │ │ │ │ │ │ │ ├── _matrix_transpose.h.i │ │ │ │ │ │ │ ├── _matrix_unary_functions.h.i │ │ │ │ │ │ │ ├── _mt_m_product.h.i │ │ │ │ │ │ │ ├── _mt_v_product.h.i │ │ │ │ │ │ │ ├── _null.h.i │ │ │ │ │ │ │ ├── _un_operator.h.i │ │ │ │ │ │ │ ├── _vector.h.i │ │ │ │ │ │ │ ├── _vector_binary_functions.h.i │ │ │ │ │ │ │ ├── _vector_functions.h.i │ │ │ │ │ │ │ ├── _vector_operators.h.i │ │ │ │ │ │ │ └── _vector_unary_functions.h.i │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ │ │ ├── bad__temps.cc.i │ │ │ │ │ │ ├── bad__xpr__const__ref.cc.i │ │ │ │ │ │ ├── swap.cc.i │ │ │ │ │ │ ├── t.cc.i │ │ │ │ │ │ └── tvmet.cc.i │ │ │ │ │ ├── testsuite │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _makefile.am.i │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ ├── _self_test.cc.i │ │ │ │ │ │ ├── _self_test.h.i │ │ │ │ │ │ ├── _test_complex_matrix.cc.i │ │ │ │ │ │ ├── _test_complex_matrix.h.i │ │ │ │ │ │ ├── _test_complex_vector.cc.i │ │ │ │ │ │ ├── _test_complex_vector.h.i │ │ │ │ │ │ ├── _test_construction.cc.i │ │ │ │ │ │ ├── _test_construction.h.i │ │ │ │ │ │ ├── _test_dimension.cc.i │ │ │ │ │ │ ├── _test_dimension.h.i │ │ │ │ │ │ ├── _test_math_ops.cc.i │ │ │ │ │ │ ├── _test_math_ops.h.i │ │ │ │ │ │ ├── _test_matrix_elementwise.cc.i │ │ │ │ │ │ ├── _test_matrix_elementwise.h.i │ │ │ │ │ │ ├── _test_matrix_eval.cc.i │ │ │ │ │ │ ├── _test_matrix_eval.h.i │ │ │ │ │ │ ├── _test_matrix_functions.cc.i │ │ │ │ │ │ ├── _test_matrix_functions.h.i │ │ │ │ │ │ ├── _test_matrix_operators.cc.i │ │ │ │ │ │ ├── _test_matrix_operators.h.i │ │ │ │ │ │ ├── _test_numeric_traits.cc.i │ │ │ │ │ │ ├── _test_numeric_traits.h.i │ │ │ │ │ │ ├── _test_numeric_traits_complex.cc.i │ │ │ │ │ │ ├── _test_numeric_traits_complex.h.i │ │ │ │ │ │ ├── _test_s_t_l.cc.i │ │ │ │ │ │ ├── _test_s_t_l.h.i │ │ │ │ │ │ ├── _test_un_func.cc.i │ │ │ │ │ │ ├── _test_un_func.h.i │ │ │ │ │ │ ├── _test_unloops.cc.i │ │ │ │ │ │ ├── _test_unloops.h.i │ │ │ │ │ │ ├── _test_vector_eval.cc.i │ │ │ │ │ │ ├── _test_vector_eval.h.i │ │ │ │ │ │ ├── _test_vector_functions.cc.i │ │ │ │ │ │ ├── _test_vector_functions.h.i │ │ │ │ │ │ ├── _test_vector_operators.cc.i │ │ │ │ │ │ ├── _test_vector_operators.h.i │ │ │ │ │ │ ├── _test_xpr.cc.i │ │ │ │ │ │ ├── _test_xpr.h.i │ │ │ │ │ │ ├── _test_xpr_matrix_functions.cc.i │ │ │ │ │ │ ├── _test_xpr_matrix_functions.h.i │ │ │ │ │ │ ├── _test_xpr_matrix_operators.cc.i │ │ │ │ │ │ ├── _test_xpr_matrix_operators.h.i │ │ │ │ │ │ ├── _test_xpr_vector_functions.cc.i │ │ │ │ │ │ ├── _test_xpr_vector_functions.h.i │ │ │ │ │ │ ├── _test_xpr_vector_operators.cc.i │ │ │ │ │ │ ├── _test_xpr_vector_operators.h.i │ │ │ │ │ │ ├── compare.h.i │ │ │ │ │ │ ├── main.cc.i │ │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ │ ├── main.h.i │ │ │ │ │ │ ├── selftest.cpp.i │ │ │ │ │ │ ├── testcommainitializer.cpp.i │ │ │ │ │ │ ├── testconstructors.cpp.i │ │ │ │ │ │ ├── testnumerictraits.cpp.i │ │ │ │ │ │ └── testtraits.cpp.i │ │ │ │ │ ├── tvmet-config.1.i │ │ │ │ │ ├── tvmet-config.in.i │ │ │ │ │ ├── tvmet.m4.i │ │ │ │ │ ├── tvmet.spec.i │ │ │ │ │ └── tvmet.spec.in.i │ │ │ │ ├── unsupported │ │ │ │ │ ├── _adolc_support │ │ │ │ │ │ └── _adolc_forward.h.i │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ ├── _eigen │ │ │ │ │ │ ├── _adolc_forward.i │ │ │ │ │ │ ├── _aligned_vector3.i │ │ │ │ │ │ ├── _arpack_support.i │ │ │ │ │ │ ├── _auto_diff.i │ │ │ │ │ │ ├── _b_d_c_s_v_d.i │ │ │ │ │ │ ├── _b_v_h.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _c_x_x11 │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _core.i │ │ │ │ │ │ │ ├── _tensor.i │ │ │ │ │ │ │ ├── _tensor_symmetry.i │ │ │ │ │ │ │ ├── _thread_pool.i │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _core │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ │ ├── _c_x_x11_meta.h.i │ │ │ │ │ │ │ │ │ ├── _c_x_x11_workarounds.h.i │ │ │ │ │ │ │ │ │ ├── _emulate_array.h.i │ │ │ │ │ │ │ │ │ ├── _emulate_c_x_x11_meta.h.i │ │ │ │ │ │ │ │ │ └── _max_size_vector.h.i │ │ │ │ │ │ │ │ ├── _tensor │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _r_e_a_d_m_e.md.i │ │ │ │ │ │ │ │ ├── _tensor.h.i │ │ │ │ │ │ │ │ ├── _tensor_arg_max.h.i │ │ │ │ │ │ │ │ ├── _tensor_arg_max_sycl.h.i │ │ │ │ │ │ │ │ ├── _tensor_assign.h.i │ │ │ │ │ │ │ │ ├── _tensor_base.h.i │ │ │ │ │ │ │ │ ├── _tensor_block.h.i │ │ │ │ │ │ │ │ ├── _tensor_broadcasting.h.i │ │ │ │ │ │ │ │ ├── _tensor_chipping.h.i │ │ │ │ │ │ │ │ ├── _tensor_concatenation.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction_blocking.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction_cuda.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction_gpu.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction_hip.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction_mapper.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction_mkldnn.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction_sycl.h.i │ │ │ │ │ │ │ │ ├── _tensor_contraction_thread_pool.h.i │ │ │ │ │ │ │ │ ├── _tensor_conversion.h.i │ │ │ │ │ │ │ │ ├── _tensor_convolution.h.i │ │ │ │ │ │ │ │ ├── _tensor_convolution_hip.h.i │ │ │ │ │ │ │ │ ├── _tensor_convolution_sycl.h.i │ │ │ │ │ │ │ │ ├── _tensor_cost_model.h.i │ │ │ │ │ │ │ │ ├── _tensor_custom_op.h.i │ │ │ │ │ │ │ │ ├── _tensor_device.h.i │ │ │ │ │ │ │ │ ├── _tensor_device_cuda.h.i │ │ │ │ │ │ │ │ ├── _tensor_device_default.h.i │ │ │ │ │ │ │ │ ├── _tensor_device_gpu.h.i │ │ │ │ │ │ │ │ ├── _tensor_device_hip.h.i │ │ │ │ │ │ │ │ ├── _tensor_device_sycl.h.i │ │ │ │ │ │ │ │ ├── _tensor_device_thread_pool.h.i │ │ │ │ │ │ │ │ ├── _tensor_device_type.h.i │ │ │ │ │ │ │ │ ├── _tensor_dimension_list.h.i │ │ │ │ │ │ │ │ ├── _tensor_dimensions.h.i │ │ │ │ │ │ │ │ ├── _tensor_eval_to.h.i │ │ │ │ │ │ │ │ ├── _tensor_evaluator.h.i │ │ │ │ │ │ │ │ ├── _tensor_executor.h.i │ │ │ │ │ │ │ │ ├── _tensor_expr.h.i │ │ │ │ │ │ │ │ ├── _tensor_f_f_t.h.i │ │ │ │ │ │ │ │ ├── _tensor_fixed_size.h.i │ │ │ │ │ │ │ │ ├── _tensor_forced_eval.h.i │ │ │ │ │ │ │ │ ├── _tensor_forward_declarations.h.i │ │ │ │ │ │ │ │ ├── _tensor_functors.h.i │ │ │ │ │ │ │ │ ├── _tensor_generator.h.i │ │ │ │ │ │ │ │ ├── _tensor_global_functions.h.i │ │ │ │ │ │ │ │ ├── _tensor_gpu_hip_cuda_defines.h.i │ │ │ │ │ │ │ │ ├── _tensor_gpu_hip_cuda_undefines.h.i │ │ │ │ │ │ │ │ ├── _tensor_i_o.h.i │ │ │ │ │ │ │ │ ├── _tensor_image_patch.h.i │ │ │ │ │ │ │ │ ├── _tensor_index_list.h.i │ │ │ │ │ │ │ │ ├── _tensor_inflation.h.i │ │ │ │ │ │ │ │ ├── _tensor_initializer.h.i │ │ │ │ │ │ │ │ ├── _tensor_int_div.h.i │ │ │ │ │ │ │ │ ├── _tensor_layout_swap.h.i │ │ │ │ │ │ │ │ ├── _tensor_macros.h.i │ │ │ │ │ │ │ │ ├── _tensor_map.h.i │ │ │ │ │ │ │ │ ├── _tensor_meta.h.i │ │ │ │ │ │ │ │ ├── _tensor_meta_macros.h.i │ │ │ │ │ │ │ │ ├── _tensor_morphing.h.i │ │ │ │ │ │ │ │ ├── _tensor_padding.h.i │ │ │ │ │ │ │ │ ├── _tensor_patch.h.i │ │ │ │ │ │ │ │ ├── _tensor_random.h.i │ │ │ │ │ │ │ │ ├── _tensor_reduction.h.i │ │ │ │ │ │ │ │ ├── _tensor_reduction_cuda.h.i │ │ │ │ │ │ │ │ ├── _tensor_reduction_gpu.h.i │ │ │ │ │ │ │ │ ├── _tensor_reduction_hip.h.i │ │ │ │ │ │ │ │ ├── _tensor_reduction_sycl.h.i │ │ │ │ │ │ │ │ ├── _tensor_ref.h.i │ │ │ │ │ │ │ │ ├── _tensor_reverse.h.i │ │ │ │ │ │ │ │ ├── _tensor_scan.h.i │ │ │ │ │ │ │ │ ├── _tensor_shuffling.h.i │ │ │ │ │ │ │ │ ├── _tensor_storage.h.i │ │ │ │ │ │ │ │ ├── _tensor_striding.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_convert_to_device_expression.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_expr_constructor.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_extract_accessor.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_extract_functors.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_functors.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_leaf_count.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_legacy_pointer.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_place_holder.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_place_holder_expr.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_run.h.i │ │ │ │ │ │ │ │ ├── _tensor_sycl_tuple.h.i │ │ │ │ │ │ │ │ ├── _tensor_trace.h.i │ │ │ │ │ │ │ │ ├── _tensor_traits.h.i │ │ │ │ │ │ │ │ ├── _tensor_u_int128.h.i │ │ │ │ │ │ │ │ └── _tensor_volume_patch.h.i │ │ │ │ │ │ │ │ ├── _tensor_symmetry │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _dynamic_symmetry.h.i │ │ │ │ │ │ │ │ ├── _static_symmetry.h.i │ │ │ │ │ │ │ │ ├── _symmetry.h.i │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ │ └── _template_group_theory.h.i │ │ │ │ │ │ │ │ ├── _thread_pool │ │ │ │ │ │ │ │ ├── _barrier.h.i │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _event_count.h.i │ │ │ │ │ │ │ │ ├── _non_blocking_thread_pool.h.i │ │ │ │ │ │ │ │ ├── _run_queue.h.i │ │ │ │ │ │ │ │ ├── _simple_thread_pool.h.i │ │ │ │ │ │ │ │ ├── _thread_cancel.h.i │ │ │ │ │ │ │ │ ├── _thread_environment.h.i │ │ │ │ │ │ │ │ ├── _thread_local.h.i │ │ │ │ │ │ │ │ ├── _thread_pool_interface.h.i │ │ │ │ │ │ │ │ └── _thread_yield.h.i │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ │ ├── _c_x_x11_meta.h.i │ │ │ │ │ │ │ │ ├── _c_x_x11_workarounds.h.i │ │ │ │ │ │ │ │ ├── _emulate_array.h.i │ │ │ │ │ │ │ │ ├── _emulate_c_x_x11_meta.h.i │ │ │ │ │ │ │ │ └── _max_size_vector.h.i │ │ │ │ │ │ ├── _cholmod_support.i │ │ │ │ │ │ ├── _complex.i │ │ │ │ │ │ ├── _euler_angles.i │ │ │ │ │ │ ├── _f_f_t.h.i │ │ │ │ │ │ ├── _f_f_t.i │ │ │ │ │ │ ├── _iterative_solvers.i │ │ │ │ │ │ ├── _k_l_u_support.i │ │ │ │ │ │ ├── _kronecker_product.i │ │ │ │ │ │ ├── _levenberg_marquardt.i │ │ │ │ │ │ ├── _m_p_real_support.i │ │ │ │ │ │ ├── _matrix_functions.i │ │ │ │ │ │ ├── _more_vectorization.i │ │ │ │ │ │ ├── _non_linear.i │ │ │ │ │ │ ├── _non_linear_optimization.i │ │ │ │ │ │ ├── _numerical_diff.i │ │ │ │ │ │ ├── _open_g_l_support.i │ │ │ │ │ │ ├── _polynomials.i │ │ │ │ │ │ ├── _s_v_d.i │ │ │ │ │ │ ├── _skyline.i │ │ │ │ │ │ ├── _sparse_extra.i │ │ │ │ │ │ ├── _special_functions.i │ │ │ │ │ │ ├── _splines.i │ │ │ │ │ │ ├── _super_l_u_support.i │ │ │ │ │ │ ├── _taucs_support.i │ │ │ │ │ │ ├── _umf_pack_support.i │ │ │ │ │ │ ├── doxygen.hpp.i │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── _auto_diff │ │ │ │ │ │ │ ├── _auto_diff_jacobian.h.i │ │ │ │ │ │ │ ├── _auto_diff_scalar.h.i │ │ │ │ │ │ │ ├── _auto_diff_vector.h.i │ │ │ │ │ │ │ └── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _b_d_c_s_v_d │ │ │ │ │ │ │ ├── _b_d_c_s_v_d.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _t_o_d_o_bdcsvd.txt.i │ │ │ │ │ │ │ └── done_in_b_d_c_s_v_d.txt.i │ │ │ │ │ │ │ ├── _b_v_h │ │ │ │ │ │ │ ├── _b_v_algorithms.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ └── _kd_b_v_h.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _eigenvalues │ │ │ │ │ │ │ ├── _arpack_self_adjoint_eigen_solver.h.i │ │ │ │ │ │ │ └── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _euler_angles │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _euler_angles.h.i │ │ │ │ │ │ │ └── _euler_system.h.i │ │ │ │ │ │ │ ├── _f_f_t │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── ei__fftw__impl.h.i │ │ │ │ │ │ │ ├── ei__kissfft__impl.h.i │ │ │ │ │ │ │ └── simple__fft__traits.h.i │ │ │ │ │ │ │ ├── _iterative_solvers │ │ │ │ │ │ │ ├── _basic_preconditioners.h.i │ │ │ │ │ │ │ ├── _bi_c_g_s_t_a_b.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _conjugate_gradient.h.i │ │ │ │ │ │ │ ├── _constrained_conj_grad.h.i │ │ │ │ │ │ │ ├── _d_g_m_r_e_s.h.i │ │ │ │ │ │ │ ├── _g_m_r_e_s.h.i │ │ │ │ │ │ │ ├── _incomplete_cholesky.h.i │ │ │ │ │ │ │ ├── _incomplete_l_u.h.i │ │ │ │ │ │ │ ├── _iteration_controller.h.i │ │ │ │ │ │ │ ├── _iterative_solver_base.h.i │ │ │ │ │ │ │ ├── _m_i_n_r_e_s.h.i │ │ │ │ │ │ │ └── _scaling.h.i │ │ │ │ │ │ │ ├── _k_l_u_support │ │ │ │ │ │ │ └── _k_l_u_support.h.i │ │ │ │ │ │ │ ├── _kronecker_product │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ └── _kronecker_tensor_product.h.i │ │ │ │ │ │ │ ├── _levenberg_marquardt │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _copyright_m_i_n_p_a_c_k.txt.i │ │ │ │ │ │ │ ├── _l_mcovar.h.i │ │ │ │ │ │ │ ├── _l_monestep.h.i │ │ │ │ │ │ │ ├── _l_mpar.h.i │ │ │ │ │ │ │ ├── _l_mqrsolv.h.i │ │ │ │ │ │ │ └── _levenberg_marquardt.h.i │ │ │ │ │ │ │ ├── _matrix_functions │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _matrix_exponential.h.i │ │ │ │ │ │ │ ├── _matrix_function.h.i │ │ │ │ │ │ │ ├── _matrix_function_atomic.h.i │ │ │ │ │ │ │ ├── _matrix_logarithm.h.i │ │ │ │ │ │ │ ├── _matrix_power.h.i │ │ │ │ │ │ │ ├── _matrix_power_base.h.i │ │ │ │ │ │ │ ├── _matrix_square_root.h.i │ │ │ │ │ │ │ └── _stem_function.h.i │ │ │ │ │ │ │ ├── _more_vectorization │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ └── _math_functions.h.i │ │ │ │ │ │ │ ├── _non_linear │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _hybrid_non_linear_solver.h.i │ │ │ │ │ │ │ ├── _levenberg_marquardt.h.i │ │ │ │ │ │ │ ├── _math_functions.h.i │ │ │ │ │ │ │ ├── chkder.h.i │ │ │ │ │ │ │ ├── covar.h.i │ │ │ │ │ │ │ ├── dogleg.h.i │ │ │ │ │ │ │ ├── fdjac1.h.i │ │ │ │ │ │ │ ├── fdjac2.h.i │ │ │ │ │ │ │ ├── hybrd.h.i │ │ │ │ │ │ │ ├── hybrd1.h.i │ │ │ │ │ │ │ ├── hybrj.h.i │ │ │ │ │ │ │ ├── hybrj1.h.i │ │ │ │ │ │ │ ├── lmder.h.i │ │ │ │ │ │ │ ├── lmder1.h.i │ │ │ │ │ │ │ ├── lmdif.h.i │ │ │ │ │ │ │ ├── lmdif1.h.i │ │ │ │ │ │ │ ├── lmpar.h.i │ │ │ │ │ │ │ ├── lmstr.h.i │ │ │ │ │ │ │ ├── lmstr1.h.i │ │ │ │ │ │ │ ├── qform.h.i │ │ │ │ │ │ │ ├── qrfac.h.i │ │ │ │ │ │ │ ├── qrsolv.h.i │ │ │ │ │ │ │ ├── r1mpyq.h.i │ │ │ │ │ │ │ ├── r1updt.h.i │ │ │ │ │ │ │ └── rwupdt.h.i │ │ │ │ │ │ │ ├── _non_linear_optimization │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _hybrid_non_linear_solver.h.i │ │ │ │ │ │ │ ├── _levenberg_marquardt.h.i │ │ │ │ │ │ │ ├── chkder.h.i │ │ │ │ │ │ │ ├── covar.h.i │ │ │ │ │ │ │ ├── dogleg.h.i │ │ │ │ │ │ │ ├── fdjac1.h.i │ │ │ │ │ │ │ ├── lmpar.h.i │ │ │ │ │ │ │ ├── qform.h.i │ │ │ │ │ │ │ ├── qrfac.h.i │ │ │ │ │ │ │ ├── qrsolv.h.i │ │ │ │ │ │ │ ├── r1mpyq.h.i │ │ │ │ │ │ │ ├── r1updt.h.i │ │ │ │ │ │ │ └── rwupdt.h.i │ │ │ │ │ │ │ ├── _numerical_diff │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ └── _numerical_diff.h.i │ │ │ │ │ │ │ ├── _polynomials │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _companion.h.i │ │ │ │ │ │ │ ├── _polynomial_solver.h.i │ │ │ │ │ │ │ └── _polynomial_utils.h.i │ │ │ │ │ │ │ ├── _s_v_d │ │ │ │ │ │ │ ├── _b_d_c_s_v_d.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _jacobi_s_v_d.h.i │ │ │ │ │ │ │ ├── _s_v_d_base.h.i │ │ │ │ │ │ │ ├── _t_o_d_o_bdcsvd.txt.i │ │ │ │ │ │ │ └── done_in_b_d_c_s_v_d.txt.i │ │ │ │ │ │ │ ├── _skyline │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _skyline_inplace_l_u.h.i │ │ │ │ │ │ │ ├── _skyline_matrix.h.i │ │ │ │ │ │ │ ├── _skyline_matrix_base.h.i │ │ │ │ │ │ │ ├── _skyline_product.h.i │ │ │ │ │ │ │ ├── _skyline_storage.h.i │ │ │ │ │ │ │ └── _skyline_util.h.i │ │ │ │ │ │ │ ├── _sparse_extra │ │ │ │ │ │ │ ├── _amd.h.i │ │ │ │ │ │ │ ├── _block_of_dynamic_sparse_matrix.h.i │ │ │ │ │ │ │ ├── _block_sparse_matrix.h.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _cholmod_support.h.i │ │ │ │ │ │ │ ├── _cholmod_support_legacy.h.i │ │ │ │ │ │ │ ├── _dynamic_sparse_matrix.h.i │ │ │ │ │ │ │ ├── _market_i_o.h.i │ │ │ │ │ │ │ ├── _matrix_market_iterator.h.i │ │ │ │ │ │ │ ├── _random_setter.h.i │ │ │ │ │ │ │ ├── _simplicial_cholesky.h.i │ │ │ │ │ │ │ ├── _solve.h.i │ │ │ │ │ │ │ ├── _sparse_l_d_l_t.h.i │ │ │ │ │ │ │ ├── _sparse_l_d_l_t_legacy.h.i │ │ │ │ │ │ │ ├── _sparse_l_l_t.h.i │ │ │ │ │ │ │ ├── _sparse_l_u.h.i │ │ │ │ │ │ │ ├── _super_l_u_support.h.i │ │ │ │ │ │ │ ├── _super_l_u_support_legacy.h.i │ │ │ │ │ │ │ ├── _taucs_support.h.i │ │ │ │ │ │ │ ├── _umf_pack_support.h.i │ │ │ │ │ │ │ └── _umf_pack_support_legacy.h.i │ │ │ │ │ │ │ ├── _special_functions │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _special_functions_array_a_p_i.h.i │ │ │ │ │ │ │ ├── _special_functions_functors.h.i │ │ │ │ │ │ │ ├── _special_functions_half.h.i │ │ │ │ │ │ │ ├── _special_functions_impl.h.i │ │ │ │ │ │ │ ├── _special_functions_packet_math.h.i │ │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ │ ├── _c_u_d_a │ │ │ │ │ │ │ │ └── _cuda_special_functions.h.i │ │ │ │ │ │ │ │ └── _g_p_u │ │ │ │ │ │ │ │ └── _gpu_special_functions.h.i │ │ │ │ │ │ │ └── _splines │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _spline.h.i │ │ │ │ │ │ │ ├── _spline_fitting.h.i │ │ │ │ │ │ │ └── _spline_fwd.h.i │ │ │ │ │ ├── _r_e_a_d_m_e.txt.i │ │ │ │ │ ├── bench │ │ │ │ │ │ └── bench__svd.cpp.i │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _doxyfile.in.i │ │ │ │ │ │ ├── _overview.dox.i │ │ │ │ │ │ ├── eigendoxy__layout.xml.in.i │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── _b_v_h___example.cpp.i │ │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ │ ├── _euler_angles.cpp.i │ │ │ │ │ │ │ ├── _f_f_t.cpp.i │ │ │ │ │ │ │ ├── _matrix_exponential.cpp.i │ │ │ │ │ │ │ ├── _matrix_function.cpp.i │ │ │ │ │ │ │ ├── _matrix_logarithm.cpp.i │ │ │ │ │ │ │ ├── _matrix_power.cpp.i │ │ │ │ │ │ │ ├── _matrix_power__failure.cpp.i │ │ │ │ │ │ │ ├── _matrix_power__optimal.cpp.i │ │ │ │ │ │ │ ├── _matrix_sine.cpp.i │ │ │ │ │ │ │ ├── _matrix_sinh.cpp.i │ │ │ │ │ │ │ ├── _matrix_square_root.cpp.i │ │ │ │ │ │ │ ├── _polynomial_solver1.cpp.i │ │ │ │ │ │ │ └── _polynomial_utils1.cpp.i │ │ │ │ │ │ ├── snippets │ │ │ │ │ │ │ └── _c_make_lists.txt.i │ │ │ │ │ │ └── unsupported.dox.i │ │ │ │ │ └── test │ │ │ │ │ │ ├── _b_v_h.cpp.i │ │ │ │ │ │ ├── _c_make_lists.txt.i │ │ │ │ │ │ ├── _complex.cpp.i │ │ │ │ │ │ ├── _euler_angles.cpp.i │ │ │ │ │ │ ├── _f_f_t.cpp.i │ │ │ │ │ │ ├── _f_f_t_w.cpp.i │ │ │ │ │ │ ├── _non_linear.cpp.i │ │ │ │ │ │ ├── _non_linear_optimization.cpp.i │ │ │ │ │ │ ├── _numerical_diff.cpp.i │ │ │ │ │ │ ├── alignedvector3.cpp.i │ │ │ │ │ │ ├── autodiff.cpp.i │ │ │ │ │ │ ├── autodiff__scalar.cpp.i │ │ │ │ │ │ ├── bdcsvd.cpp.i │ │ │ │ │ │ ├── bicgstab.cpp.i │ │ │ │ │ │ ├── cg.cpp.i │ │ │ │ │ │ ├── conjugate__gradient.cpp.i │ │ │ │ │ │ ├── cxx11__eventcount.cpp.i │ │ │ │ │ │ ├── cxx11__float16.cpp.i │ │ │ │ │ │ ├── cxx11__maxsizevector.cpp.i │ │ │ │ │ │ ├── cxx11__meta.cpp.i │ │ │ │ │ │ ├── cxx11__non__blocking__thread__pool.cpp.i │ │ │ │ │ │ ├── cxx11__runqueue.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__argmax.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__argmax__cuda.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__argmax__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__argmax__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__argmax__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__argmax__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__assign.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__block__access.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__broadcast__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__broadcasting.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__builtins__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__cast__float16__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__cast__float16__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__cast__float16__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__casts.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__chipping.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__chipping__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__comparisons.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__complex__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__complex__cwise__ops__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__complex__cwise__ops__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__complex__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__concatenation.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__concatenation__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__const.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__contract__cuda.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__contract__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__contract__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__contract__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__contract__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__contraction.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__contraction__mkldnn.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__convolution.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__convolution__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__cuda.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__custom__index.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__custom__op.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__custom__op__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__custom_index.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__device.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__device.cu.i │ │ │ │ │ │ ├── cxx11__tensor__device__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__device__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__dimension.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__empty.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__executor.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__expr.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__fft.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__fixed__size.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__forced__eval.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__forced__eval__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__generator.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__generator__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__ifft.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__image__patch.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__image__patch__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__image__patch_o_p__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__index__list.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__inflation.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__inflation__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__intdiv.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__io.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__layout__swap.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__layout__swap__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__lvalue.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__map.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__math.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__mixed__indices.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__morphing.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__morphing__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__move.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__notification.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__of__complex.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__of__const__values.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__of__float16__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__of__float16__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__of__float16__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__of__strings.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__padding.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__padding__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__patch.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__patch__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__random.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__random__cuda.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__random__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__random__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__random__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__reduction.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__reduction.cu.i │ │ │ │ │ │ ├── cxx11__tensor__reduction__cuda.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__reduction__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__reduction__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__reduction__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__reduction__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__ref.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__reverse.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__reverse__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__roundings.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__scan.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__scan__cuda.cu.i │ │ │ │ │ │ ├── cxx11__tensor__scan__gpu.cu.i │ │ │ │ │ │ ├── cxx11__tensor__scan__hip.cu.i │ │ │ │ │ │ ├── cxx11__tensor__shuffling.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__shuffling__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__simple.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__striding.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__striding__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__sugar.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__sycl__broadcast.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__sycl__device.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__sycl__forced__eval.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__symmetry.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__thread__pool.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__trace.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__uint128.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__volume__patch.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__volume__patch__sycl.cpp.i │ │ │ │ │ │ ├── cxx11__tensor__volume__patch_o_p__sycl.cpp.i │ │ │ │ │ │ ├── dgmres.cpp.i │ │ │ │ │ │ ├── dlmalloc.c.i │ │ │ │ │ │ ├── dlmalloc.h.i │ │ │ │ │ │ ├── float16.cpp.i │ │ │ │ │ │ ├── forward__adolc.cpp.i │ │ │ │ │ │ ├── gmres.cpp.i │ │ │ │ │ │ ├── incomplete__cholesky.cpp.i │ │ │ │ │ │ ├── jacobisvd.cpp.i │ │ │ │ │ │ ├── kronecker__product.cpp.i │ │ │ │ │ │ ├── levenberg__marquardt.cpp.i │ │ │ │ │ │ ├── matrix__exponential.cpp.i │ │ │ │ │ │ ├── matrix__function.cpp.i │ │ │ │ │ │ ├── matrix__functions.h.i │ │ │ │ │ │ ├── matrix__power.cpp.i │ │ │ │ │ │ ├── matrix__square__root.cpp.i │ │ │ │ │ │ ├── matrix_exponential.cpp.i │ │ │ │ │ │ ├── minres.cpp.i │ │ │ │ │ │ ├── mpreal.cpp.i │ │ │ │ │ │ ├── mpreal.h.i │ │ │ │ │ │ ├── mpreal │ │ │ │ │ │ ├── dlmalloc.c.i │ │ │ │ │ │ ├── dlmalloc.h.i │ │ │ │ │ │ ├── mpreal.cpp.i │ │ │ │ │ │ └── mpreal.h.i │ │ │ │ │ │ ├── mpreal__support.cpp.i │ │ │ │ │ │ ├── nesting__profiling.cpp.i │ │ │ │ │ │ ├── openglsupport.cpp.i │ │ │ │ │ │ ├── polynomialsolver.cpp.i │ │ │ │ │ │ ├── polynomialutils.cpp.i │ │ │ │ │ │ ├── simplicial__cholesky.cpp.i │ │ │ │ │ │ ├── sparse__extra.cpp.i │ │ │ │ │ │ ├── sparse__ldlt.cpp.i │ │ │ │ │ │ ├── sparse__llt.cpp.i │ │ │ │ │ │ ├── sparse__llt.h.i │ │ │ │ │ │ ├── sparse__lu.cpp.i │ │ │ │ │ │ ├── sparse__lu.h.i │ │ │ │ │ │ ├── sparse__lu__legacy.cpp.i │ │ │ │ │ │ ├── sparse__solver.h.i │ │ │ │ │ │ ├── special__functions.cpp.i │ │ │ │ │ │ ├── splines.cpp.i │ │ │ │ │ │ ├── superlu__support.cpp.i │ │ │ │ │ │ ├── svd__common.h.i │ │ │ │ │ │ └── umfpack__support.cpp.i │ │ │ │ ├── ~2ehgeol.i │ │ │ │ ├── ~2ehgignore.i │ │ │ │ ├── ~2ehgtags.i │ │ │ │ └── ~2ekrazy.i │ │ │ ├── fncache │ │ │ ├── phaseroots │ │ │ ├── undo │ │ │ ├── undo.backup.fncache │ │ │ ├── undo.backup.phaseroots │ │ │ ├── undo.backupfiles │ │ │ └── undo.phaseroots │ │ ├── undo.bookmarks │ │ ├── undo.branch │ │ ├── undo.desc │ │ └── undo.dirstate │ ├── .hgeol │ ├── .hgignore │ ├── .hgtags │ ├── CMakeLists.txt │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── KLUSupport │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── ArithmeticSequence.h │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── IndexedView.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PartialReduxEvaluator.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── Reshaped.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── StlIterators.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512 │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ └── Complex.h │ │ │ │ ├── Default │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ └── Settings.h │ │ │ │ ├── GPU │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── HIP │ │ │ │ │ └── hcc │ │ │ │ │ │ └── math_constants.h │ │ │ │ ├── MSA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SYCL │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ ├── IntegralConstant.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── ReshapedHelper.h │ │ │ │ ├── StaticAssert.h │ │ │ │ ├── SymbolicIndex.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── KLUSupport │ │ │ └── KLUSupport.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── IndexedViewMethods.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ └── ReshapedMethods.h │ ├── INSTALL │ ├── README.md │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── analyze-blocking-sizes.cpp │ │ ├── basicbench.cxxlist │ │ ├── basicbenchmark.cpp │ │ ├── basicbenchmark.h │ │ ├── benchBlasGemm.cpp │ │ ├── benchCholesky.cpp │ │ ├── benchEigenSolver.cpp │ │ ├── benchFFT.cpp │ │ ├── benchGeometry.cpp │ │ ├── benchVecAdd.cpp │ │ ├── bench_gemm.cpp │ │ ├── bench_multi_compilers.sh │ │ ├── bench_norm.cpp │ │ ├── bench_reverse.cpp │ │ ├── bench_sum.cpp │ │ ├── bench_unrolling │ │ ├── benchmark-blocking-sizes.cpp │ │ ├── benchmark.cpp │ │ ├── benchmarkSlice.cpp │ │ ├── benchmarkX.cpp │ │ ├── benchmarkXcwise.cpp │ │ ├── benchmark_suite │ │ ├── btl │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── actions │ │ │ │ ├── action_aat_product.hh │ │ │ │ ├── action_ata_product.hh │ │ │ │ ├── action_atv_product.hh │ │ │ │ ├── action_axpby.hh │ │ │ │ ├── action_axpy.hh │ │ │ │ ├── action_cholesky.hh │ │ │ │ ├── action_ger.hh │ │ │ │ ├── action_hessenberg.hh │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ ├── action_lu_solve.hh │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ ├── action_partial_lu.hh │ │ │ │ ├── action_rot.hh │ │ │ │ ├── action_symv.hh │ │ │ │ ├── action_syr2.hh │ │ │ │ ├── action_trisolve.hh │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ ├── action_trmm.hh │ │ │ │ └── basic_actions.hh │ │ │ ├── cmake │ │ │ │ ├── FindACML.cmake │ │ │ │ ├── FindATLAS.cmake │ │ │ │ ├── FindBLAZE.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindOPENBLAS.cmake │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ ├── FindTvmet.cmake │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_settings.txt │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ ├── go_mean │ │ │ │ ├── mean.cxx │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ ├── mk_mean_script.sh │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ ├── regularize.cxx │ │ │ │ ├── smooth.cxx │ │ │ │ └── smooth_all.sh │ │ │ ├── generic_bench │ │ │ │ ├── bench.hh │ │ │ │ ├── bench_parameter.hh │ │ │ │ ├── btl.hh │ │ │ │ ├── init │ │ │ │ │ ├── init_function.hh │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ └── init_vector.hh │ │ │ │ ├── static │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ └── static_size_generator.hh │ │ │ │ ├── timers │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ └── x86_timer.hh │ │ │ │ └── utils │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ └── libs │ │ │ │ ├── BLAS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas.h │ │ │ │ ├── blas_interface.hh │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ ├── c_interface_base.h │ │ │ │ └── main.cpp │ │ │ │ ├── STL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── STL_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blaze │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blaze_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blitz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ ├── blitz_interface.hh │ │ │ │ ├── btl_blitz.cpp │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ ├── eigen2_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ ├── eigen3_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ ├── gmm_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4 │ │ │ │ ├── .kdbgrc.main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tensors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ ├── main_vecmat.cpp │ │ │ │ └── tensor_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── dense_solvers.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── perf_monitoring │ │ │ ├── changesets.txt │ │ │ ├── gemm.cpp │ │ │ ├── gemm_common.h │ │ │ ├── gemm_settings.txt │ │ │ ├── gemm_square_settings.txt │ │ │ ├── gemv.cpp │ │ │ ├── gemv_common.h │ │ │ ├── gemv_settings.txt │ │ │ ├── gemv_square_settings.txt │ │ │ ├── gemvt.cpp │ │ │ ├── lazy_gemm.cpp │ │ │ ├── lazy_gemm_settings.txt │ │ │ ├── llt.cpp │ │ │ ├── make_plot.sh │ │ │ ├── resources │ │ │ │ ├── chart_footer.html │ │ │ │ ├── chart_header.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── s1.js │ │ │ │ └── s2.js │ │ │ ├── run.sh │ │ │ ├── runall.sh │ │ │ ├── trmv_lo.cpp │ │ │ ├── trmv_lot.cpp │ │ │ ├── trmv_up.cpp │ │ │ └── trmv_upt.cpp │ │ ├── product_threshold.cpp │ │ ├── quat_slerp.cpp │ │ ├── quatmul.cpp │ │ ├── sparse_cholesky.cpp │ │ ├── sparse_dense_product.cpp │ │ ├── sparse_lu.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_randomsetter.cpp │ │ ├── sparse_setter.cpp │ │ ├── sparse_transpose.cpp │ │ ├── sparse_trisolver.cpp │ │ ├── spbench │ │ │ ├── CMakeLists.txt │ │ │ ├── sp_solver.cpp │ │ │ ├── spbench.dtd │ │ │ ├── spbenchsolver.cpp │ │ │ ├── spbenchsolver.h │ │ │ ├── spbenchstyle.h │ │ │ └── test_sparseLU.cpp │ │ ├── spmv.cpp │ │ ├── tensors │ │ │ ├── README │ │ │ ├── benchmark.h │ │ │ ├── benchmark_main.cc │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks.h │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ ├── tensor_benchmarks_gpu.cu │ │ │ ├── tensor_benchmarks_sycl.cc │ │ │ └── tensor_benchmarks_sycl_include_headers.cc │ │ └── vdw_new.cpp │ ├── blas │ │ ├── BandTriangularSolver.h │ │ ├── CMakeLists.txt │ │ ├── GeneralRank1Update.h │ │ ├── PackedSelfadjointProduct.h │ │ ├── PackedTriangularMatrixVector.h │ │ ├── PackedTriangularSolverVector.h │ │ ├── README.txt │ │ ├── Rank2Update.h │ │ ├── common.h │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── double.cpp │ │ ├── f2c │ │ │ ├── chbmv.c │ │ │ ├── chpmv.c │ │ │ ├── complexdots.c │ │ │ ├── ctbmv.c │ │ │ ├── d_cnjg.c │ │ │ ├── datatypes.h │ │ │ ├── drotm.c │ │ │ ├── drotmg.c │ │ │ ├── dsbmv.c │ │ │ ├── dspmv.c │ │ │ ├── dtbmv.c │ │ │ ├── lsame.c │ │ │ ├── r_cnjg.c │ │ │ ├── srotm.c │ │ │ ├── srotmg.c │ │ │ ├── ssbmv.c │ │ │ ├── sspmv.c │ │ │ ├── stbmv.c │ │ │ ├── zhbmv.c │ │ │ ├── zhpmv.c │ │ │ └── ztbmv.c │ │ ├── fortran │ │ │ └── complexdots.f │ │ ├── level1_cplx_impl.h │ │ ├── level1_impl.h │ │ ├── level1_real_impl.h │ │ ├── level2_cplx_impl.h │ │ ├── level2_impl.h │ │ ├── level2_real_impl.h │ │ ├── level3_impl.h │ │ ├── single.cpp │ │ ├── testing │ │ │ ├── CMakeLists.txt │ │ │ ├── cblat1.f │ │ │ ├── cblat2.dat │ │ │ ├── cblat2.f │ │ │ ├── cblat3.dat │ │ │ ├── cblat3.f │ │ │ ├── dblat1.f │ │ │ ├── dblat2.dat │ │ │ ├── dblat2.f │ │ │ ├── dblat3.dat │ │ │ ├── dblat3.f │ │ │ ├── runblastest.sh │ │ │ ├── sblat1.f │ │ │ ├── sblat2.dat │ │ │ ├── sblat2.f │ │ │ ├── sblat3.dat │ │ │ ├── sblat3.f │ │ │ ├── zblat1.f │ │ │ ├── zblat2.dat │ │ │ ├── zblat2.f │ │ │ ├── zblat3.dat │ │ │ └── zblat3.f │ │ └── xerbla.cpp │ ├── cmake │ │ ├── Eigen3Config.cmake.in │ │ ├── Eigen3ConfigLegacy.cmake.in │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenDetermineVSServicePack.cmake │ │ ├── EigenTesting.cmake │ │ ├── EigenUninstall.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindBLASEXT.cmake │ │ ├── FindCholmod.cmake │ │ ├── FindComputeCpp.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindHWLOC.cmake │ │ ├── FindKLU.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPTSCOTCH.cmake │ │ ├── FindPastix.cmake │ │ ├── FindSPQR.cmake │ │ ├── FindScotch.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindTriSYCL.cmake │ │ ├── FindUmfpack.cmake │ │ ├── FindXsmm.cmake │ │ ├── RegexUtils.cmake │ │ ├── UseEigen3.cmake │ │ └── language_support.cmake │ ├── debug │ │ ├── gdb │ │ │ ├── __init__.py │ │ │ └── printers.py │ │ └── msvc │ │ │ ├── eigen.natvis │ │ │ └── eigen_autoexp_part.dat │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── mandelbrot │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── mandelbrot.cpp │ │ │ └── mandelbrot.h │ │ ├── mix_eigen_and_c │ │ │ ├── README │ │ │ ├── binary_library.cpp │ │ │ ├── binary_library.h │ │ │ └── example.c │ │ └── opengl │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ ├── doc │ │ ├── AsciiQuickReference.txt │ │ ├── B01_Experimental.dox │ │ ├── CMakeLists.txt │ │ ├── ClassHierarchy.dox │ │ ├── CoeffwiseMathFunctionsTable.dox │ │ ├── CustomizingEigen_CustomScalar.dox │ │ ├── CustomizingEigen_InheritingMatrix.dox │ │ ├── CustomizingEigen_NullaryExpr.dox │ │ ├── CustomizingEigen_Plugins.dox │ │ ├── DenseDecompositionBenchmark.dox │ │ ├── Doxyfile.in │ │ ├── Eigen_Silly_Professor_64x64.png │ │ ├── FixedSizeVectorizable.dox │ │ ├── FunctionsTakingEigenTypes.dox │ │ ├── HiPerformance.dox │ │ ├── InplaceDecomposition.dox │ │ ├── InsideEigenExample.dox │ │ ├── LeastSquares.dox │ │ ├── Manual.dox │ │ ├── MatrixfreeSolverExample.dox │ │ ├── NewExpressionType.dox │ │ ├── Overview.dox │ │ ├── PassingByValue.dox │ │ ├── Pitfalls.dox │ │ ├── PreprocessorDirectives.dox │ │ ├── QuickReference.dox │ │ ├── QuickStartGuide.dox │ │ ├── SparseLinearSystems.dox │ │ ├── SparseQuickReference.dox │ │ ├── StlContainers.dox │ │ ├── StorageOrders.dox │ │ ├── StructHavingEigenMembers.dox │ │ ├── TemplateKeyword.dox │ │ ├── TopicAliasing.dox │ │ ├── TopicAssertions.dox │ │ ├── TopicCMakeGuide.dox │ │ ├── TopicEigenExpressionTemplates.dox │ │ ├── TopicLazyEvaluation.dox │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ ├── TopicMultithreading.dox │ │ ├── TopicResizing.dox │ │ ├── TopicScalarTypes.dox │ │ ├── TopicVectorization.dox │ │ ├── TutorialAdvancedInitialization.dox │ │ ├── TutorialArrayClass.dox │ │ ├── TutorialBlockOperations.dox │ │ ├── TutorialGeometry.dox │ │ ├── TutorialLinearAlgebra.dox │ │ ├── TutorialMapClass.dox │ │ ├── TutorialMatrixArithmetic.dox │ │ ├── TutorialMatrixClass.dox │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ ├── TutorialReshape.dox │ │ ├── TutorialSTL.dox │ │ ├── TutorialSlicingIndexing.dox │ │ ├── TutorialSparse.dox │ │ ├── TutorialSparse_example_details.dox │ │ ├── UnalignedArrayAssert.dox │ │ ├── UsingBlasLapackBackends.dox │ │ ├── UsingIntelMKL.dox │ │ ├── UsingNVCC.dox │ │ ├── WrongStackAlignment.dox │ │ ├── eigen_navtree_hacks.js │ │ ├── eigendoxy.css │ │ ├── eigendoxy_footer.html.in │ │ ├── eigendoxy_header.html.in │ │ ├── eigendoxy_layout.xml.in │ │ ├── eigendoxy_tabs.css │ │ ├── examples │ │ │ ├── .krazy │ │ │ ├── CMakeLists.txt │ │ │ ├── CustomizingEigen_Inheritance.cpp │ │ │ ├── Cwise_erf.cpp │ │ │ ├── Cwise_erfc.cpp │ │ │ ├── Cwise_lgamma.cpp │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ ├── QuickStart_example.cpp │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ ├── TutorialInplaceLU.cpp │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ ├── class_Block.cpp │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ ├── class_FixedBlock.cpp │ │ │ ├── class_FixedReshaped.cpp │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ ├── class_Reshaped.cpp │ │ │ ├── class_VectorBlock.cpp │ │ │ ├── function_taking_eigenbase.cpp │ │ │ ├── function_taking_ref.cpp │ │ │ ├── make_circulant.cpp │ │ │ ├── make_circulant.cpp.entry │ │ │ ├── make_circulant.cpp.evaluator │ │ │ ├── make_circulant.cpp.expression │ │ │ ├── make_circulant.cpp.main │ │ │ ├── make_circulant.cpp.preamble │ │ │ ├── make_circulant.cpp.traits │ │ │ ├── make_circulant2.cpp │ │ │ ├── matrixfree_cg.cpp │ │ │ ├── nullary_indexing.cpp │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ ├── tut_matrix_resize.cpp │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ ├── ftv2node.png │ │ ├── ftv2pnode.png │ │ ├── snippets │ │ │ ├── .krazy │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ ├── Array_initializer_list_23_cxx11.cpp │ │ │ ├── Array_initializer_list_vector_cxx11.cpp │ │ │ ├── Array_variadic_ctor_cxx11.cpp │ │ │ ├── BiCGSTAB_simple.cpp │ │ │ ├── BiCGSTAB_step_by_step.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ ├── ComplexSchur_compute.cpp │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ ├── Cwise_abs.cpp │ │ │ ├── Cwise_abs2.cpp │ │ │ ├── Cwise_acos.cpp │ │ │ ├── Cwise_arg.cpp │ │ │ ├── Cwise_array_power_array.cpp │ │ │ ├── Cwise_asin.cpp │ │ │ ├── Cwise_atan.cpp │ │ │ ├── Cwise_boolean_and.cpp │ │ │ ├── Cwise_boolean_not.cpp │ │ │ ├── Cwise_boolean_or.cpp │ │ │ ├── Cwise_boolean_xor.cpp │ │ │ ├── Cwise_ceil.cpp │ │ │ ├── Cwise_cos.cpp │ │ │ ├── Cwise_cosh.cpp │ │ │ ├── Cwise_cube.cpp │ │ │ ├── Cwise_equal_equal.cpp │ │ │ ├── Cwise_exp.cpp │ │ │ ├── Cwise_floor.cpp │ │ │ ├── Cwise_greater.cpp │ │ │ ├── Cwise_greater_equal.cpp │ │ │ ├── Cwise_inverse.cpp │ │ │ ├── Cwise_isFinite.cpp │ │ │ ├── Cwise_isInf.cpp │ │ │ ├── Cwise_isNaN.cpp │ │ │ ├── Cwise_less.cpp │ │ │ ├── Cwise_less_equal.cpp │ │ │ ├── Cwise_log.cpp │ │ │ ├── Cwise_log10.cpp │ │ │ ├── Cwise_max.cpp │ │ │ ├── Cwise_min.cpp │ │ │ ├── Cwise_minus.cpp │ │ │ ├── Cwise_minus_equal.cpp │ │ │ ├── Cwise_not_equal.cpp │ │ │ ├── Cwise_plus.cpp │ │ │ ├── Cwise_plus_equal.cpp │ │ │ ├── Cwise_pow.cpp │ │ │ ├── Cwise_product.cpp │ │ │ ├── Cwise_quotient.cpp │ │ │ ├── Cwise_round.cpp │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ ├── Cwise_sign.cpp │ │ │ ├── Cwise_sin.cpp │ │ │ ├── Cwise_sinh.cpp │ │ │ ├── Cwise_slash_equal.cpp │ │ │ ├── Cwise_sqrt.cpp │ │ │ ├── Cwise_square.cpp │ │ │ ├── Cwise_tan.cpp │ │ │ ├── Cwise_tanh.cpp │ │ │ ├── Cwise_times_equal.cpp │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ ├── DenseBase_LinSpacedInt.cpp │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ ├── DirectionWise_hnormalized.cpp │ │ │ ├── DirectionWise_replicate.cpp │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ ├── EigenSolver_compute.cpp │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ ├── FullPivLU_image.cpp │ │ │ ├── FullPivLU_kernel.cpp │ │ │ ├── FullPivLU_solve.cpp │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ ├── HouseholderQR_solve.cpp │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ ├── IOFormat.cpp │ │ │ ├── JacobiSVD_basic.cpp │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ ├── LLT_example.cpp │ │ │ ├── LLT_solve.cpp │ │ │ ├── LeastSquaresNormalEquations.cpp │ │ │ ├── LeastSquaresQR.cpp │ │ │ ├── Map_general_stride.cpp │ │ │ ├── Map_inner_stride.cpp │ │ │ ├── Map_outer_stride.cpp │ │ │ ├── Map_placement_new.cpp │ │ │ ├── Map_simple.cpp │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ ├── MatrixBase_all.cpp │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ ├── MatrixBase_array.cpp │ │ │ ├── MatrixBase_array_const.cpp │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ ├── MatrixBase_cast.cpp │ │ │ ├── MatrixBase_col.cpp │ │ │ ├── MatrixBase_colwise.cpp │ │ │ ├── MatrixBase_colwise_iterator_cxx11.cpp │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ ├── MatrixBase_cwiseSign.cpp │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ ├── MatrixBase_end_int.cpp │ │ │ ├── MatrixBase_eval.cpp │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ ├── MatrixBase_hnormalized.cpp │ │ │ ├── MatrixBase_homogeneous.cpp │ │ │ ├── MatrixBase_identity.cpp │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ ├── MatrixBase_inverse.cpp │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ ├── MatrixBase_isZero.cpp │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ ├── MatrixBase_noalias.cpp │ │ │ ├── MatrixBase_ones.cpp │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ ├── MatrixBase_prod.cpp │ │ │ ├── MatrixBase_random.cpp │ │ │ ├── MatrixBase_random_int.cpp │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ ├── MatrixBase_replicate.cpp │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ ├── MatrixBase_reshaped_auto.cpp │ │ │ ├── MatrixBase_reshaped_fixed.cpp │ │ │ ├── MatrixBase_reshaped_int_int.cpp │ │ │ ├── MatrixBase_reshaped_to_vector.cpp │ │ │ ├── MatrixBase_reverse.cpp │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ ├── MatrixBase_row.cpp │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ ├── MatrixBase_select.cpp │ │ │ ├── MatrixBase_selfadjointView.cpp │ │ │ ├── MatrixBase_set.cpp │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ ├── MatrixBase_setZero.cpp │ │ │ ├── MatrixBase_start_int.cpp │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ ├── MatrixBase_transpose.cpp │ │ │ ├── MatrixBase_triangularView.cpp │ │ │ ├── MatrixBase_zero.cpp │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ ├── Matrix_Map_stride.cpp │ │ │ ├── Matrix_initializer_list_23_cxx11.cpp │ │ │ ├── Matrix_initializer_list_vector_cxx11.cpp │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ ├── Matrix_resize_int.cpp │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ ├── Matrix_setZero_int.cpp │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ ├── Matrix_variadic_ctor_cxx11.cpp │ │ │ ├── PartialPivLU_solve.cpp │ │ │ ├── PartialRedux_count.cpp │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ ├── PartialRedux_norm.cpp │ │ │ ├── PartialRedux_prod.cpp │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ ├── PartialRedux_sum.cpp │ │ │ ├── RealQZ_compute.cpp │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ ├── RealSchur_compute.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ ├── Slicing_arrayexpr.cpp │ │ │ ├── Slicing_custom_padding_cxx11.cpp │ │ │ ├── Slicing_rawarray_cxx11.cpp │ │ │ ├── Slicing_stdvector_cxx11.cpp │ │ │ ├── SparseMatrix_coeffs.cpp │ │ │ ├── TopicAliasing_block.cpp │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ ├── Triangular_solve.cpp │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ ├── Tutorial_Map_using.cpp │ │ │ ├── Tutorial_ReshapeMat2Mat.cpp │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ │ ├── Tutorial_SlicingCol.cpp │ │ │ ├── Tutorial_SlicingVec.cpp │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ ├── Tutorial_range_for_loop_1d_cxx11.cpp │ │ │ ├── Tutorial_range_for_loop_2d_cxx11.cpp │ │ │ ├── Tutorial_reshaped_vs_resize_1.cpp │ │ │ ├── Tutorial_reshaped_vs_resize_2.cpp │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ ├── Tutorial_std_sort.cpp │ │ │ ├── Tutorial_std_sort_rows_cxx11.cpp │ │ │ ├── VectorwiseOp_homogeneous.cpp │ │ │ ├── Vectorwise_reverse.cpp │ │ │ ├── class_FullPivLU.cpp │ │ │ ├── compile_snippet.cpp.in │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ ├── special_examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ ├── Tutorial_sparse_example_details.cpp │ │ │ └── random_cpp11.cpp │ │ └── tutorial.cpp │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── bdcsvd_int.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ ├── block_on_const_type_actually_const_0.cpp │ │ ├── block_on_const_type_actually_const_1.cpp │ │ ├── colpivqr_int.cpp │ │ ├── const_qualified_block_method_retval_0.cpp │ │ ├── const_qualified_block_method_retval_1.cpp │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ ├── const_qualified_transpose_method_retval.cpp │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ │ ├── cwiseunaryview_on_const_type_actually_const.cpp │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ ├── eigensolver_cplx.cpp │ │ ├── eigensolver_int.cpp │ │ ├── failtest_sanity_check.cpp │ │ ├── fullpivlu_int.cpp │ │ ├── fullpivqr_int.cpp │ │ ├── initializer_list_1.cpp │ │ ├── initializer_list_2.cpp │ │ ├── jacobisvd_int.cpp │ │ ├── ldlt_int.cpp │ │ ├── llt_int.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ ├── map_on_const_type_actually_const_0.cpp │ │ ├── map_on_const_type_actually_const_1.cpp │ │ ├── partialpivlu_int.cpp │ │ ├── qr_int.cpp │ │ ├── ref_1.cpp │ │ ├── ref_2.cpp │ │ ├── ref_3.cpp │ │ ├── ref_4.cpp │ │ ├── ref_5.cpp │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ │ ├── selfadjointview_on_const_type_actually_const.cpp │ │ ├── sparse_ref_1.cpp │ │ ├── sparse_ref_2.cpp │ │ ├── sparse_ref_3.cpp │ │ ├── sparse_ref_4.cpp │ │ ├── sparse_ref_5.cpp │ │ ├── sparse_storage_mismatch.cpp │ │ ├── swap_1.cpp │ │ ├── swap_2.cpp │ │ ├── ternary_1.cpp │ │ ├── ternary_2.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ ├── transpose_on_const_type_actually_const.cpp │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ │ └── triangularview_on_const_type_actually_const.cpp │ ├── lapack │ │ ├── CMakeLists.txt │ │ ├── cholesky.cpp │ │ ├── clacgv.f │ │ ├── cladiv.f │ │ ├── clarf.f │ │ ├── clarfb.f │ │ ├── clarfg.f │ │ ├── clarft.f │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── dladiv.f │ │ ├── dlamch.f │ │ ├── dlapy2.f │ │ ├── dlapy3.f │ │ ├── dlarf.f │ │ ├── dlarfb.f │ │ ├── dlarfg.f │ │ ├── dlarft.f │ │ ├── double.cpp │ │ ├── dsecnd_NONE.f │ │ ├── eigenvalues.cpp │ │ ├── ilaclc.f │ │ ├── ilaclr.f │ │ ├── iladlc.f │ │ ├── iladlr.f │ │ ├── ilaslc.f │ │ ├── ilaslr.f │ │ ├── ilazlc.f │ │ ├── ilazlr.f │ │ ├── lapack_common.h │ │ ├── lu.cpp │ │ ├── second_NONE.f │ │ ├── single.cpp │ │ ├── sladiv.f │ │ ├── slamch.f │ │ ├── slapy2.f │ │ ├── slapy3.f │ │ ├── slarf.f │ │ ├── slarfb.f │ │ ├── slarfg.f │ │ ├── slarft.f │ │ ├── svd.cpp │ │ ├── zlacgv.f │ │ ├── zladiv.f │ │ ├── zlarf.f │ │ ├── zlarfb.f │ │ ├── zlarfg.f │ │ └── zlarft.f │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── buildtests.in │ │ ├── cdashtesting.cmake.in │ │ ├── check.in │ │ ├── debug.in │ │ ├── eigen_gen_credits.cpp │ │ ├── eigen_gen_docs │ │ ├── eigen_gen_split_test_help.cmake │ │ ├── eigen_monitor_perf.sh │ │ ├── release.in │ │ └── relicense.py │ ├── signature_of_eigen3_matrix_library │ ├── test │ │ ├── AnnoyingScalar.h │ │ ├── CMakeLists.txt │ │ ├── adjoint.cpp │ │ ├── array_cwise.cpp │ │ ├── array_for_matrix.cpp │ │ ├── array_of_string.cpp │ │ ├── array_replicate.cpp │ │ ├── array_reverse.cpp │ │ ├── bandmatrix.cpp │ │ ├── basicstuff.cpp │ │ ├── bdcsvd.cpp │ │ ├── bicgstab.cpp │ │ ├── block.cpp │ │ ├── boostmultiprec.cpp │ │ ├── bug1213.cpp │ │ ├── bug1213.h │ │ ├── bug1213_main.cpp │ │ ├── cholesky.cpp │ │ ├── cholmod_support.cpp │ │ ├── commainitializer.cpp │ │ ├── conjugate_gradient.cpp │ │ ├── conservative_resize.cpp │ │ ├── constructor.cpp │ │ ├── corners.cpp │ │ ├── ctorleak.cpp │ │ ├── denseLM.cpp │ │ ├── dense_storage.cpp │ │ ├── determinant.cpp │ │ ├── diagonal.cpp │ │ ├── diagonal_matrix_variadic_ctor.cpp │ │ ├── diagonalmatrices.cpp │ │ ├── dontalign.cpp │ │ ├── dynalloc.cpp │ │ ├── eigen2support.cpp │ │ ├── eigensolver_complex.cpp │ │ ├── eigensolver_generalized_real.cpp │ │ ├── eigensolver_generic.cpp │ │ ├── eigensolver_selfadjoint.cpp │ │ ├── evaluator_common.h │ │ ├── evaluators.cpp │ │ ├── exceptions.cpp │ │ ├── fastmath.cpp │ │ ├── first_aligned.cpp │ │ ├── geo_alignedbox.cpp │ │ ├── geo_eulerangles.cpp │ │ ├── geo_homogeneous.cpp │ │ ├── geo_hyperplane.cpp │ │ ├── geo_orthomethods.cpp │ │ ├── geo_parametrizedline.cpp │ │ ├── geo_quaternion.cpp │ │ ├── geo_transformations.cpp │ │ ├── gpu_basic.cu │ │ ├── gpu_common.h │ │ ├── half_float.cpp │ │ ├── hessenberg.cpp │ │ ├── householder.cpp │ │ ├── incomplete_cholesky.cpp │ │ ├── indexed_view.cpp │ │ ├── initializer_list_construction.cpp │ │ ├── inplace_decomposition.cpp │ │ ├── integer_types.cpp │ │ ├── inverse.cpp │ │ ├── is_same_dense.cpp │ │ ├── jacobi.cpp │ │ ├── jacobisvd.cpp │ │ ├── klu_support.cpp │ │ ├── linearstructure.cpp │ │ ├── lscg.cpp │ │ ├── lu.cpp │ │ ├── main.h │ │ ├── mapped_matrix.cpp │ │ ├── mapstaticmethods.cpp │ │ ├── mapstride.cpp │ │ ├── meta.cpp │ │ ├── metis_support.cpp │ │ ├── miscmatrices.cpp │ │ ├── mixingtypes.cpp │ │ ├── mpl2only.cpp │ │ ├── nestbyvalue.cpp │ │ ├── nesting_ops.cpp │ │ ├── nomalloc.cpp │ │ ├── nullary.cpp │ │ ├── num_dimensions.cpp │ │ ├── numext.cpp │ │ ├── packetmath.cpp │ │ ├── pardiso_support.cpp │ │ ├── pastix_support.cpp │ │ ├── permutationmatrices.cpp │ │ ├── prec_inverse_4x4.cpp │ │ ├── product.h │ │ ├── product_extra.cpp │ │ ├── product_large.cpp │ │ ├── product_mmtr.cpp │ │ ├── product_notemporary.cpp │ │ ├── product_selfadjoint.cpp │ │ ├── product_small.cpp │ │ ├── product_symm.cpp │ │ ├── product_syrk.cpp │ │ ├── product_trmm.cpp │ │ ├── product_trmv.cpp │ │ ├── product_trsolve.cpp │ │ ├── qr.cpp │ │ ├── qr_colpivoting.cpp │ │ ├── qr_fullpivoting.cpp │ │ ├── qtvector.cpp │ │ ├── rand.cpp │ │ ├── real_qz.cpp │ │ ├── redux.cpp │ │ ├── ref.cpp │ │ ├── reshape.cpp │ │ ├── resize.cpp │ │ ├── rvalue_types.cpp │ │ ├── schur_complex.cpp │ │ ├── schur_real.cpp │ │ ├── selfadjoint.cpp │ │ ├── simplicial_cholesky.cpp │ │ ├── sizeof.cpp │ │ ├── sizeoverflow.cpp │ │ ├── smallvectors.cpp │ │ ├── solverbase.h │ │ ├── sparse.h │ │ ├── sparseLM.cpp │ │ ├── sparse_basic.cpp │ │ ├── sparse_block.cpp │ │ ├── sparse_permutations.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_ref.cpp │ │ ├── sparse_solver.h │ │ ├── sparse_solvers.cpp │ │ ├── sparse_vector.cpp │ │ ├── sparselu.cpp │ │ ├── sparseqr.cpp │ │ ├── special_numbers.cpp │ │ ├── split_test_helper.h │ │ ├── spqr_support.cpp │ │ ├── stable_norm.cpp │ │ ├── stddeque.cpp │ │ ├── stddeque_overload.cpp │ │ ├── stdlist.cpp │ │ ├── stdlist_overload.cpp │ │ ├── stdvector.cpp │ │ ├── stdvector_overload.cpp │ │ ├── stl_iterators.cpp │ │ ├── superlu_support.cpp │ │ ├── svd_common.h │ │ ├── svd_fill.h │ │ ├── swap.cpp │ │ ├── symbolic_index.cpp │ │ ├── triangular.cpp │ │ ├── type_alias.cpp │ │ ├── umeyama.cpp │ │ ├── umfpack_support.cpp │ │ ├── unalignedassert.cpp │ │ ├── unalignedcount.cpp │ │ ├── upperbidiagonalization.cpp │ │ ├── vectorization_logic.cpp │ │ ├── vectorwiseop.cpp │ │ ├── visitor.cpp │ │ └── zerosized.cpp │ └── unsupported │ │ ├── CMakeLists.txt │ │ ├── Eigen │ │ ├── AdolcForward │ │ ├── AlignedVector3 │ │ ├── ArpackSupport │ │ ├── AutoDiff │ │ ├── BVH │ │ ├── CMakeLists.txt │ │ ├── CXX11 │ │ │ ├── CMakeLists.txt │ │ │ ├── Tensor │ │ │ ├── TensorSymmetry │ │ │ ├── ThreadPool │ │ │ └── src │ │ │ │ ├── Tensor │ │ │ │ ├── README.md │ │ │ │ ├── Tensor.h │ │ │ │ ├── TensorArgMax.h │ │ │ │ ├── TensorArgMaxSycl.h │ │ │ │ ├── TensorAssign.h │ │ │ │ ├── TensorBase.h │ │ │ │ ├── TensorBlock.h │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ ├── TensorChipping.h │ │ │ │ ├── TensorConcatenation.h │ │ │ │ ├── TensorContraction.h │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ ├── TensorContractionGpu.h │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ ├── TensorConversion.h │ │ │ │ ├── TensorConvolution.h │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ ├── TensorCostModel.h │ │ │ │ ├── TensorCustomOp.h │ │ │ │ ├── TensorDevice.h │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ ├── TensorDeviceGpu.h │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ ├── TensorDimensionList.h │ │ │ │ ├── TensorDimensions.h │ │ │ │ ├── TensorEvalTo.h │ │ │ │ ├── TensorEvaluator.h │ │ │ │ ├── TensorExecutor.h │ │ │ │ ├── TensorExpr.h │ │ │ │ ├── TensorFFT.h │ │ │ │ ├── TensorFixedSize.h │ │ │ │ ├── TensorForcedEval.h │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ ├── TensorFunctors.h │ │ │ │ ├── TensorGenerator.h │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ ├── TensorGpuHipCudaDefines.h │ │ │ │ ├── TensorGpuHipCudaUndefines.h │ │ │ │ ├── TensorIO.h │ │ │ │ ├── TensorImagePatch.h │ │ │ │ ├── TensorIndexList.h │ │ │ │ ├── TensorInflation.h │ │ │ │ ├── TensorInitializer.h │ │ │ │ ├── TensorIntDiv.h │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ ├── TensorMacros.h │ │ │ │ ├── TensorMap.h │ │ │ │ ├── TensorMeta.h │ │ │ │ ├── TensorMorphing.h │ │ │ │ ├── TensorPadding.h │ │ │ │ ├── TensorPatch.h │ │ │ │ ├── TensorRandom.h │ │ │ │ ├── TensorReduction.h │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ ├── TensorReductionGpu.h │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ ├── TensorRef.h │ │ │ │ ├── TensorReverse.h │ │ │ │ ├── TensorScan.h │ │ │ │ ├── TensorShuffling.h │ │ │ │ ├── TensorStorage.h │ │ │ │ ├── TensorStriding.h │ │ │ │ ├── TensorSycl.h │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ ├── TensorSyclFunctors.h │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ ├── TensorSyclRun.h │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ ├── TensorTrace.h │ │ │ │ ├── TensorTraits.h │ │ │ │ ├── TensorUInt128.h │ │ │ │ └── TensorVolumePatch.h │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ ├── StaticSymmetry.h │ │ │ │ ├── Symmetry.h │ │ │ │ └── util │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ ├── ThreadPool │ │ │ │ ├── Barrier.h │ │ │ │ ├── EventCount.h │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ ├── RunQueue.h │ │ │ │ ├── ThreadCancel.h │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ ├── ThreadLocal.h │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ └── ThreadYield.h │ │ │ │ └── util │ │ │ │ ├── CXX11Meta.h │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ ├── EmulateArray.h │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ └── MaxSizeVector.h │ │ ├── EulerAngles │ │ ├── FFT │ │ ├── IterativeSolvers │ │ ├── KroneckerProduct │ │ ├── LevenbergMarquardt │ │ ├── MPRealSupport │ │ ├── MatrixFunctions │ │ ├── MoreVectorization │ │ ├── NonLinearOptimization │ │ ├── NumericalDiff │ │ ├── OpenGLSupport │ │ ├── Polynomials │ │ ├── Skyline │ │ ├── SparseExtra │ │ ├── SpecialFunctions │ │ ├── Splines │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ └── AutoDiffVector.h │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ └── KdBVH.h │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── EulerAngles │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ └── EulerSystem.h │ │ │ ├── FFT │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── LMcovar.h │ │ │ ├── LMonestep.h │ │ │ ├── LMpar.h │ │ │ ├── LMqrsolv.h │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions │ │ │ ├── MatrixExponential.h │ │ │ ├── MatrixFunction.h │ │ │ ├── MatrixLogarithm.h │ │ │ ├── MatrixPower.h │ │ │ ├── MatrixSquareRoot.h │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization │ │ │ ├── HybridNonLinearSolver.h │ │ │ ├── LevenbergMarquardt.h │ │ │ ├── chkder.h │ │ │ ├── covar.h │ │ │ ├── dogleg.h │ │ │ ├── fdjac1.h │ │ │ ├── lmpar.h │ │ │ ├── qrsolv.h │ │ │ ├── r1mpyq.h │ │ │ ├── r1updt.h │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials │ │ │ ├── Companion.h │ │ │ ├── PolynomialSolver.h │ │ │ └── PolynomialUtils.h │ │ │ ├── Skyline │ │ │ ├── SkylineInplaceLU.h │ │ │ ├── SkylineMatrix.h │ │ │ ├── SkylineMatrixBase.h │ │ │ ├── SkylineProduct.h │ │ │ ├── SkylineStorage.h │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ ├── BlockSparseMatrix.h │ │ │ ├── DynamicSparseMatrix.h │ │ │ ├── MarketIO.h │ │ │ ├── MatrixMarketIterator.h │ │ │ └── RandomSetter.h │ │ │ ├── SpecialFunctions │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ ├── SpecialFunctionsHalf.h │ │ │ ├── SpecialFunctionsImpl.h │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ └── arch │ │ │ │ └── GPU │ │ │ │ └── GpuSpecialFunctions.h │ │ │ └── Splines │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── bench │ │ └── bench_svd.cpp │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Overview.dox │ │ ├── eigendoxy_layout.xml.in │ │ ├── examples │ │ │ ├── BVH_Example.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.cpp │ │ │ ├── FFT.cpp │ │ │ ├── MatrixExponential.cpp │ │ │ ├── MatrixFunction.cpp │ │ │ ├── MatrixLogarithm.cpp │ │ │ ├── MatrixPower.cpp │ │ │ ├── MatrixPower_optimal.cpp │ │ │ ├── MatrixSine.cpp │ │ │ ├── MatrixSinh.cpp │ │ │ ├── MatrixSquareRoot.cpp │ │ │ ├── PolynomialSolver1.cpp │ │ │ └── PolynomialUtils1.cpp │ │ └── snippets │ │ │ └── CMakeLists.txt │ │ └── test │ │ ├── BVH.cpp │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.cpp │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── autodiff_scalar.cpp │ │ ├── cxx11_eventcount.cpp │ │ ├── cxx11_maxsizevector.cpp │ │ ├── cxx11_meta.cpp │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ ├── cxx11_runqueue.cpp │ │ ├── cxx11_tensor_argmax.cpp │ │ ├── cxx11_tensor_argmax_gpu.cu │ │ ├── cxx11_tensor_argmax_sycl.cpp │ │ ├── cxx11_tensor_assign.cpp │ │ ├── cxx11_tensor_block_access.cpp │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ ├── cxx11_tensor_broadcasting.cpp │ │ ├── cxx11_tensor_builtins_sycl.cpp │ │ ├── cxx11_tensor_cast_float16_gpu.cu │ │ ├── cxx11_tensor_casts.cpp │ │ ├── cxx11_tensor_chipping.cpp │ │ ├── cxx11_tensor_chipping_sycl.cpp │ │ ├── cxx11_tensor_comparisons.cpp │ │ ├── cxx11_tensor_complex_cwise_ops_gpu.cu │ │ ├── cxx11_tensor_complex_gpu.cu │ │ ├── cxx11_tensor_concatenation.cpp │ │ ├── cxx11_tensor_concatenation_sycl.cpp │ │ ├── cxx11_tensor_const.cpp │ │ ├── cxx11_tensor_contract_gpu.cu │ │ ├── cxx11_tensor_contract_sycl.cpp │ │ ├── cxx11_tensor_contraction.cpp │ │ ├── cxx11_tensor_convolution.cpp │ │ ├── cxx11_tensor_convolution_sycl.cpp │ │ ├── cxx11_tensor_custom_index.cpp │ │ ├── cxx11_tensor_custom_op.cpp │ │ ├── cxx11_tensor_custom_op_sycl.cpp │ │ ├── cxx11_tensor_device.cu │ │ ├── cxx11_tensor_device_sycl.cpp │ │ ├── cxx11_tensor_dimension.cpp │ │ ├── cxx11_tensor_empty.cpp │ │ ├── cxx11_tensor_executor.cpp │ │ ├── cxx11_tensor_expr.cpp │ │ ├── cxx11_tensor_fft.cpp │ │ ├── cxx11_tensor_fixed_size.cpp │ │ ├── cxx11_tensor_forced_eval.cpp │ │ ├── cxx11_tensor_forced_eval_sycl.cpp │ │ ├── cxx11_tensor_generator.cpp │ │ ├── cxx11_tensor_generator_sycl.cpp │ │ ├── cxx11_tensor_gpu.cu │ │ ├── cxx11_tensor_ifft.cpp │ │ ├── cxx11_tensor_image_patch.cpp │ │ ├── cxx11_tensor_image_patch_sycl.cpp │ │ ├── cxx11_tensor_index_list.cpp │ │ ├── cxx11_tensor_inflation.cpp │ │ ├── cxx11_tensor_inflation_sycl.cpp │ │ ├── cxx11_tensor_intdiv.cpp │ │ ├── cxx11_tensor_io.cpp │ │ ├── cxx11_tensor_layout_swap.cpp │ │ ├── cxx11_tensor_layout_swap_sycl.cpp │ │ ├── cxx11_tensor_lvalue.cpp │ │ ├── cxx11_tensor_map.cpp │ │ ├── cxx11_tensor_math.cpp │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ ├── cxx11_tensor_morphing.cpp │ │ ├── cxx11_tensor_morphing_sycl.cpp │ │ ├── cxx11_tensor_move.cpp │ │ ├── cxx11_tensor_notification.cpp │ │ ├── cxx11_tensor_of_complex.cpp │ │ ├── cxx11_tensor_of_const_values.cpp │ │ ├── cxx11_tensor_of_float16_gpu.cu │ │ ├── cxx11_tensor_of_strings.cpp │ │ ├── cxx11_tensor_padding.cpp │ │ ├── cxx11_tensor_padding_sycl.cpp │ │ ├── cxx11_tensor_patch.cpp │ │ ├── cxx11_tensor_patch_sycl.cpp │ │ ├── cxx11_tensor_random.cpp │ │ ├── cxx11_tensor_random_gpu.cu │ │ ├── cxx11_tensor_reduction.cpp │ │ ├── cxx11_tensor_reduction_gpu.cu │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ ├── cxx11_tensor_ref.cpp │ │ ├── cxx11_tensor_reverse.cpp │ │ ├── cxx11_tensor_reverse_sycl.cpp │ │ ├── cxx11_tensor_roundings.cpp │ │ ├── cxx11_tensor_scan.cpp │ │ ├── cxx11_tensor_scan_gpu.cu │ │ ├── cxx11_tensor_shuffling.cpp │ │ ├── cxx11_tensor_shuffling_sycl.cpp │ │ ├── cxx11_tensor_simple.cpp │ │ ├── cxx11_tensor_striding.cpp │ │ ├── cxx11_tensor_striding_sycl.cpp │ │ ├── cxx11_tensor_sugar.cpp │ │ ├── cxx11_tensor_sycl.cpp │ │ ├── cxx11_tensor_symmetry.cpp │ │ ├── cxx11_tensor_thread_pool.cpp │ │ ├── cxx11_tensor_trace.cpp │ │ ├── cxx11_tensor_uint128.cpp │ │ ├── cxx11_tensor_volume_patch.cpp │ │ ├── cxx11_tensor_volume_patch_sycl.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.cpp │ │ ├── kronecker_product.cpp │ │ ├── levenberg_marquardt.cpp │ │ ├── matrix_exponential.cpp │ │ ├── matrix_function.cpp │ │ ├── matrix_functions.h │ │ ├── matrix_power.cpp │ │ ├── matrix_square_root.cpp │ │ ├── minres.cpp │ │ ├── mpreal │ │ └── mpreal.h │ │ ├── mpreal_support.cpp │ │ ├── openglsupport.cpp │ │ ├── polynomialsolver.cpp │ │ ├── polynomialutils.cpp │ │ ├── sparse_extra.cpp │ │ ├── special_functions.cpp │ │ └── splines.cpp ├── figs │ ├── Lagrange_multiplier.png │ ├── agents.png │ ├── alap.png │ ├── asap.png │ ├── auto_diff.png │ ├── bb1.png │ ├── bb2.png │ ├── bb3.png │ ├── box_loop.png │ ├── data_flow.png │ ├── elim1.png │ ├── elim2.png │ ├── inference.png │ ├── mcmc.png │ ├── operations.png │ ├── pagerank.png │ ├── score_distribution.png │ └── spectral.png ├── lm.png └── numbers.txt └── projects ├── FinalProject.ipynb └── papers ├── A Nonparametric Statistical Approach to Clustering via Mode Identification.pdf ├── Auto-Encoding Variational Bayes.pdf ├── Bayeisan Hierachical Clustering.pdf ├── Biclustering via Sparse Singular Value Decomposition.pdf ├── Clustering by Passing Messages Between Data Points.pdf ├── Hierarchical Dirichlet Processes.pdf ├── Hierarchical Topic Models and the Nested Chinese Restaurant Process.pdf ├── Implementing EM and Viterbi algorithms for Hidden Markov Model in linear memory-1.pdf ├── Independent component analysis algorithms and applications.pdf ├── Infinite Latent Feature Models and the Indian Buffet Process.pdf ├── Latent Dirichlet Allocation.pdf ├── Partial Least-squares Regressionl.pdf └── Stochastic Gradient Hamiltonian Monte Carlo.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/README.md -------------------------------------------------------------------------------- /exams/Midterm01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm01.ipynb -------------------------------------------------------------------------------- /exams/Midterm01_Mock.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm01_Mock.ipynb -------------------------------------------------------------------------------- /exams/Midterm01_Mock_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm01_Mock_Solutions.ipynb -------------------------------------------------------------------------------- /exams/Midterm01_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm01_Solutions.ipynb -------------------------------------------------------------------------------- /exams/Midterm02.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm02.ipynb -------------------------------------------------------------------------------- /exams/Midterm02_Mock01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm02_Mock01.ipynb -------------------------------------------------------------------------------- /exams/Midterm02_Mock01_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm02_Mock01_Solutions.ipynb -------------------------------------------------------------------------------- /exams/Midterm02_Mock02.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm02_Mock02.ipynb -------------------------------------------------------------------------------- /exams/Midterm02_Mock02_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm02_Mock02_Solutions.ipynb -------------------------------------------------------------------------------- /exams/Midterm02_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/Midterm02_Solutions.ipynb -------------------------------------------------------------------------------- /exams/data/austen-emma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/austen-emma.txt -------------------------------------------------------------------------------- /exams/data/austen-persuasion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/austen-persuasion.txt -------------------------------------------------------------------------------- /exams/data/austen-sense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/austen-sense.txt -------------------------------------------------------------------------------- /exams/data/bag_of_words.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/bag_of_words.csv -------------------------------------------------------------------------------- /exams/data/ecoli.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/ecoli.fasta -------------------------------------------------------------------------------- /exams/data/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/iris.png -------------------------------------------------------------------------------- /exams/data/milkmaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/milkmaid.png -------------------------------------------------------------------------------- /exams/data/pagerank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/pagerank.png -------------------------------------------------------------------------------- /exams/data/palindromes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/palindromes.txt -------------------------------------------------------------------------------- /exams/data/vowel_rich.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/exams/data/vowel_rich.txt -------------------------------------------------------------------------------- /homework/HW01_Text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW01_Text.ipynb -------------------------------------------------------------------------------- /homework/HW01_Text_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW01_Text_Solutions.ipynb -------------------------------------------------------------------------------- /homework/HW02_numbers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW02_numbers.ipynb -------------------------------------------------------------------------------- /homework/HW02_numbers_solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW02_numbers_solutions.ipynb -------------------------------------------------------------------------------- /homework/HW03.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW03.ipynb -------------------------------------------------------------------------------- /homework/HW03_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW03_Solutions.ipynb -------------------------------------------------------------------------------- /homework/HW04.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW04.ipynb -------------------------------------------------------------------------------- /homework/HW04_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW04_Solutions.ipynb -------------------------------------------------------------------------------- /homework/HW05.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW05.ipynb -------------------------------------------------------------------------------- /homework/HW05_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW05_Solutions.ipynb -------------------------------------------------------------------------------- /homework/HW06.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW06.ipynb -------------------------------------------------------------------------------- /homework/HW06_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW06_Solutions.ipynb -------------------------------------------------------------------------------- /homework/HW07_CPP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW07_CPP.ipynb -------------------------------------------------------------------------------- /homework/HW07_Soultions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW07_Soultions.ipynb -------------------------------------------------------------------------------- /homework/HW08_Code_Optimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW08_Code_Optimization.ipynb -------------------------------------------------------------------------------- /homework/HW08_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/HW08_Solutions.ipynb -------------------------------------------------------------------------------- /homework/data/pad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/data/pad.txt -------------------------------------------------------------------------------- /homework/data/palindromes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/data/palindromes.txt -------------------------------------------------------------------------------- /homework/figs/7_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/figs/7_1.png -------------------------------------------------------------------------------- /homework/figs/7_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/figs/7_2.png -------------------------------------------------------------------------------- /homework/figs/7_2A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/figs/7_2A.png -------------------------------------------------------------------------------- /homework/figs/7_2B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/figs/7_2B.png -------------------------------------------------------------------------------- /homework/figs/7_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/figs/7_3.png -------------------------------------------------------------------------------- /homework/figs/7_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/figs/7_4.png -------------------------------------------------------------------------------- /homework/figs/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/figs/elephant.jpg -------------------------------------------------------------------------------- /homework/figs/vecs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/figs/vecs.png -------------------------------------------------------------------------------- /homework/vecs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/homework/vecs.png -------------------------------------------------------------------------------- /notebook/S01_Jupyter_and_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S01_Jupyter_and_Python.ipynb -------------------------------------------------------------------------------- /notebook/S02_Text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S02_Text.ipynb -------------------------------------------------------------------------------- /notebook/S02_Text_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S02_Text_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S03A_Scalars.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S03A_Scalars.ipynb -------------------------------------------------------------------------------- /notebook/S03A_Scalars_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S03A_Scalars_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S03_Numpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S03_Numpy.ipynb -------------------------------------------------------------------------------- /notebook/S03_Numpy_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S03_Numpy_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S04A_Using_Pandas_Simple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S04A_Using_Pandas_Simple.ipynb -------------------------------------------------------------------------------- /notebook/S04_Using_Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S04_Using_Pandas.ipynb -------------------------------------------------------------------------------- /notebook/S04_Using_Pandas_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S04_Using_Pandas_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S05_Graphics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S05_Graphics.ipynb -------------------------------------------------------------------------------- /notebook/S05_Graphics_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S05_Graphics_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S06_Functional.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S06_Functional.ipynb -------------------------------------------------------------------------------- /notebook/S06_Functional_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S06_Functional_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S07A_Algorithms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S07A_Algorithms.ipynb -------------------------------------------------------------------------------- /notebook/S07B_Vectors_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S07B_Vectors_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S07C_Matrices_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S07C_Matrices_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S07D_Sparse_Matrices_Annotated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S07D_Sparse_Matrices_Annotated.ipynb -------------------------------------------------------------------------------- /notebook/S08C_Least_Squares.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S08C_Least_Squares.ipynb -------------------------------------------------------------------------------- /notebook/S08D_PCA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S08D_PCA.ipynb -------------------------------------------------------------------------------- /notebook/S08E_SVD.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S08E_SVD.ipynb -------------------------------------------------------------------------------- /notebook/S08F_LinearAlgebraExamples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S08F_LinearAlgebraExamples.ipynb -------------------------------------------------------------------------------- /notebook/S08_Linear_Algebra_Review.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S08_Linear_Algebra_Review.ipynb -------------------------------------------------------------------------------- /notebook/S09A_Root_Finding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S09A_Root_Finding.ipynb -------------------------------------------------------------------------------- /notebook/S09B_Optimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S09B_Optimization.ipynb -------------------------------------------------------------------------------- /notebook/S09C_Optimization_Algorithms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S09C_Optimization_Algorithms.ipynb -------------------------------------------------------------------------------- /notebook/S09D_Optimization_Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S09D_Optimization_Examples.ipynb -------------------------------------------------------------------------------- /notebook/S09E_Optimization_Line_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S09E_Optimization_Line_Search.ipynb -------------------------------------------------------------------------------- /notebook/S09F_Least_Squares_Optimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S09F_Least_Squares_Optimization.ipynb -------------------------------------------------------------------------------- /notebook/S09H_Constrained_Optimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S09H_Constrained_Optimization.ipynb -------------------------------------------------------------------------------- /notebook/S10A_Dimension_Reduction_PCA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S10A_Dimension_Reduction_PCA.ipynb -------------------------------------------------------------------------------- /notebook/S11_Clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S11_Clustering.ipynb -------------------------------------------------------------------------------- /notebook/S12A_CPP_Mechanics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S12A_CPP_Mechanics.ipynb -------------------------------------------------------------------------------- /notebook/S12B_C.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S12B_C.ipynb -------------------------------------------------------------------------------- /notebook/S12C_CPP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S12C_CPP.ipynb -------------------------------------------------------------------------------- /notebook/S13A_pybind11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S13A_pybind11.ipynb -------------------------------------------------------------------------------- /notebook/S13B_Cython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S13B_Cython.ipynb -------------------------------------------------------------------------------- /notebook/S13C_Numba.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S13C_Numba.ipynb -------------------------------------------------------------------------------- /notebook/S14B_Random_Variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S14B_Random_Variables.ipynb -------------------------------------------------------------------------------- /notebook/S14C_Monte_Carlo_Methods.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S14C_Monte_Carlo_Methods.ipynb -------------------------------------------------------------------------------- /notebook/S14D_Monte_Carlo_Integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S14D_Monte_Carlo_Integration.ipynb -------------------------------------------------------------------------------- /notebook/S14E_MarkovChains.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S14E_MarkovChains.ipynb -------------------------------------------------------------------------------- /notebook/S14F_MCMC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S14F_MCMC.ipynb -------------------------------------------------------------------------------- /notebook/S14G_HMC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S14G_HMC.ipynb -------------------------------------------------------------------------------- /notebook/S14I_Model_Evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S14I_Model_Evaluation.ipynb -------------------------------------------------------------------------------- /notebook/S14_Probabilistic_Programming.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S14_Probabilistic_Programming.ipynb -------------------------------------------------------------------------------- /notebook/S15A_PyMC3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S15A_PyMC3.ipynb -------------------------------------------------------------------------------- /notebook/S15B_PyMC3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S15B_PyMC3.ipynb -------------------------------------------------------------------------------- /notebook/S15C_PyMC3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S15C_PyMC3.ipynb -------------------------------------------------------------------------------- /notebook/S15D_PyMC3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S15D_PyMC3.ipynb -------------------------------------------------------------------------------- /notebook/S15E_PyStan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S15E_PyStan.ipynb -------------------------------------------------------------------------------- /notebook/S16A_TF1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S16A_TF1.ipynb -------------------------------------------------------------------------------- /notebook/S16B_TF2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S16B_TF2.ipynb -------------------------------------------------------------------------------- /notebook/S16_TF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/S16_TF.ipynb -------------------------------------------------------------------------------- /notebook/T01_Warm_Up_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T01_Warm_Up_Exercises.ipynb -------------------------------------------------------------------------------- /notebook/T01_Warm_Up_Exercises_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T01_Warm_Up_Exercises_Solutions.ipynb -------------------------------------------------------------------------------- /notebook/T02_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T02_Exercises.ipynb -------------------------------------------------------------------------------- /notebook/T02_Exercises_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T02_Exercises_Solutions.ipynb -------------------------------------------------------------------------------- /notebook/T03_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T03_Exercises.ipynb -------------------------------------------------------------------------------- /notebook/T03_Exercises_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T03_Exercises_Solutions.ipynb -------------------------------------------------------------------------------- /notebook/T04_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T04_Exercises.ipynb -------------------------------------------------------------------------------- /notebook/T04_Exercises_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T04_Exercises_Solutions.ipynb -------------------------------------------------------------------------------- /notebook/T05_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T05_Exercises.ipynb -------------------------------------------------------------------------------- /notebook/T05_Exercises_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T05_Exercises_Solutions.ipynb -------------------------------------------------------------------------------- /notebook/T06_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T06_Exercises.ipynb -------------------------------------------------------------------------------- /notebook/T06_Exercises_Partial_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T06_Exercises_Partial_Solutions.ipynb -------------------------------------------------------------------------------- /notebook/T07_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T07_Exercises.ipynb -------------------------------------------------------------------------------- /notebook/T07_Optimization_Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T07_Optimization_Examples.ipynb -------------------------------------------------------------------------------- /notebook/T09_C.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T09_C.ipynb -------------------------------------------------------------------------------- /notebook/T09_C_Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/T09_C_Solutions.ipynb -------------------------------------------------------------------------------- /notebook/bias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/bias.png -------------------------------------------------------------------------------- /notebook/data/HtWt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/data/HtWt.csv -------------------------------------------------------------------------------- /notebook/data/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/data/airports.csv -------------------------------------------------------------------------------- /notebook/data/names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/data/names.csv -------------------------------------------------------------------------------- /notebook/data/radon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/data/radon.csv -------------------------------------------------------------------------------- /notebook/dna.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/dna.fasta -------------------------------------------------------------------------------- /notebook/eigen/.hg/00changelog.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/00changelog.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/branch: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /notebook/eigen/.hg/cache/branch2-served: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/cache/branch2-served -------------------------------------------------------------------------------- /notebook/eigen/.hg/cache/checkisexec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebook/eigen/.hg/cache/checklink: -------------------------------------------------------------------------------- 1 | checklink-target -------------------------------------------------------------------------------- /notebook/eigen/.hg/cache/checklink-target: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebook/eigen/.hg/cache/hgtagsfnodes1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/cache/hgtagsfnodes1 -------------------------------------------------------------------------------- /notebook/eigen/.hg/cache/rbc-names-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/cache/rbc-names-v1 -------------------------------------------------------------------------------- /notebook/eigen/.hg/cache/rbc-revs-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/cache/rbc-revs-v1 -------------------------------------------------------------------------------- /notebook/eigen/.hg/dirstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/dirstate -------------------------------------------------------------------------------- /notebook/eigen/.hg/hgrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/hgrc -------------------------------------------------------------------------------- /notebook/eigen/.hg/requires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/requires -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/00changelog.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/00changelog.d -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/00changelog.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/00changelog.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/00manifest.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/00manifest.d -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/00manifest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/00manifest.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_c_o_p_y_i_n_g.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_c_o_p_y_i_n_g.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_doxyfile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_doxyfile.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_doxyfile.in.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_doxyfile.in.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_array.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_core.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_core.h.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_core.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_core.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_dense.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_dense.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_eigen.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_eigen.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_jacobi.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_jacobi.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_l_u.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_l_u.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_q_r.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_q_r.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_s_v_d.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_s_v_d.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_eigen/_sparse.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_eigen/_sparse.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_i_n_s_t_a_l_l.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_i_n_s_t_a_l_l.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_mainpage.dox.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_mainpage.dox.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/_t_o_d_o.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/_t_o_d_o.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/bench/spmv.cpp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/bench/spmv.cpp.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/blas.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/blas.h.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/cgbmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/cgbmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/chbmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/chbmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/chpmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/chpmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/chpr.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/chpr.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/chpr2.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/chpr2.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/common.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/common.h.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/ctbmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/ctbmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/ctbsv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/ctbsv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/ctpmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/ctpmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/ctpsv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/ctpsv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/dgbmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/dgbmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/drotm.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/drotm.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/drotmg.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/drotmg.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/dsbmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/dsbmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/dspmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/dspmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/dspr.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/dspr.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/dspr2.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/dspr2.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/dtbmv.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/dtbmv.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/sspr.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/sspr.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/blas/zhpr.f.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/blas/zhpr.f.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/src/_all.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/src/_all.h.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/src/_all.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/src/_all.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/src/_core.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/src/_core.h.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/src/_core.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/src/_core.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/src/_manip.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/src/_manip.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/src/_util.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/src/_util.h.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/test/lu.cpp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/test/lu.cpp.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/test/main.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/test/main.h.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/test/qr.cpp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/test/qr.cpp.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/~2ehgeol.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/~2ehgeol.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/~2ehgignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/~2ehgignore.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/~2ehgtags.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/~2ehgtags.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/data/~2ekrazy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/data/~2ekrazy.i -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/fncache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/fncache -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/phaseroots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/phaseroots -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/undo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/undo -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/undo.backup.phaseroots: -------------------------------------------------------------------------------- 1 | 1 8a21fd850624c931e448cbcfb38168cb2717c790 2 | -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/undo.backupfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/store/undo.backupfiles -------------------------------------------------------------------------------- /notebook/eigen/.hg/store/undo.phaseroots: -------------------------------------------------------------------------------- 1 | 1 8a21fd850624c931e448cbcfb38168cb2717c790 2 | -------------------------------------------------------------------------------- /notebook/eigen/.hg/undo.bookmarks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebook/eigen/.hg/undo.branch: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /notebook/eigen/.hg/undo.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hg/undo.desc -------------------------------------------------------------------------------- /notebook/eigen/.hg/undo.dirstate: -------------------------------------------------------------------------------- 1 | c`  -------------------------------------------------------------------------------- /notebook/eigen/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hgeol -------------------------------------------------------------------------------- /notebook/eigen/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hgignore -------------------------------------------------------------------------------- /notebook/eigen/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/.hgtags -------------------------------------------------------------------------------- /notebook/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/COPYING.BSD -------------------------------------------------------------------------------- /notebook/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/COPYING.GPL -------------------------------------------------------------------------------- /notebook/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /notebook/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /notebook/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /notebook/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/COPYING.README -------------------------------------------------------------------------------- /notebook/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /notebook/eigen/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/CTestCustom.cmake.in -------------------------------------------------------------------------------- /notebook/eigen/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /notebook/eigen/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/CholmodSupport -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Core -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Dense -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Householder -------------------------------------------------------------------------------- /notebook/eigen/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /notebook/eigen/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/KLUSupport -------------------------------------------------------------------------------- /notebook/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/LU -------------------------------------------------------------------------------- /notebook/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /notebook/eigen/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/OrderingMethods -------------------------------------------------------------------------------- /notebook/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /notebook/eigen/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/PardisoSupport -------------------------------------------------------------------------------- /notebook/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/QR -------------------------------------------------------------------------------- /notebook/eigen/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /notebook/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /notebook/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/SVD -------------------------------------------------------------------------------- /notebook/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /notebook/eigen/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/SparseCholesky -------------------------------------------------------------------------------- /notebook/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /notebook/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /notebook/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /notebook/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /notebook/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/StdList -------------------------------------------------------------------------------- /notebook/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /notebook/eigen/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /notebook/eigen/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /notebook/eigen/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /notebook/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/INSTALL -------------------------------------------------------------------------------- /notebook/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/README.md -------------------------------------------------------------------------------- /notebook/eigen/bench/BenchSparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/BenchSparseUtil.h -------------------------------------------------------------------------------- /notebook/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /notebook/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /notebook/eigen/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/README.txt -------------------------------------------------------------------------------- /notebook/eigen/bench/basicbench.cxxlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/basicbench.cxxlist -------------------------------------------------------------------------------- /notebook/eigen/bench/basicbenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/basicbenchmark.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/basicbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/basicbenchmark.h -------------------------------------------------------------------------------- /notebook/eigen/bench/benchBlasGemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchBlasGemm.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchCholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchCholesky.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchEigenSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchEigenSolver.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchFFT.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchGeometry.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchVecAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchVecAdd.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/bench_gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/bench_gemm.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/bench_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/bench_norm.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/bench_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/bench_reverse.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/bench_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/bench_sum.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/bench_unrolling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/bench_unrolling -------------------------------------------------------------------------------- /notebook/eigen/bench/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchmark.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchmarkSlice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchmarkSlice.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchmarkX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchmarkX.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchmarkXcwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchmarkXcwise.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/benchmark_suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/benchmark_suite -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/COPYING -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/README -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/data/go_mean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/data/go_mean -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/data/mean.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/data/mean.cxx -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/data/smooth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/data/smooth.cxx -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/data/smooth_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/data/smooth_all.sh -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/libs/BLAS/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/libs/BLAS/blas.h -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/libs/BLAS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/libs/BLAS/main.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/libs/STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/libs/STL/main.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/libs/gmm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/libs/gmm/main.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/btl/libs/mtl4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/btl/libs/mtl4/main.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/dense_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/dense_solvers.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/eig33.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/geometry.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/perf_monitoring/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/perf_monitoring/run.sh -------------------------------------------------------------------------------- /notebook/eigen/bench/product_threshold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/product_threshold.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/quat_slerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/quat_slerp.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/quatmul.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/sparse_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/sparse_cholesky.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/sparse_lu.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/sparse_product.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/sparse_setter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/sparse_setter.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/sparse_transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/sparse_transpose.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/sparse_trisolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/sparse_trisolver.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/spbench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/spbench/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/bench/spbench/sp_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/spbench/sp_solver.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/spbench/spbench.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/spbench/spbench.dtd -------------------------------------------------------------------------------- /notebook/eigen/bench/spbench/spbenchstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/spbench/spbenchstyle.h -------------------------------------------------------------------------------- /notebook/eigen/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/spmv.cpp -------------------------------------------------------------------------------- /notebook/eigen/bench/tensors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/tensors/README -------------------------------------------------------------------------------- /notebook/eigen/bench/tensors/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/tensors/benchmark.h -------------------------------------------------------------------------------- /notebook/eigen/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/bench/vdw_new.cpp -------------------------------------------------------------------------------- /notebook/eigen/blas/BandTriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/BandTriangularSolver.h -------------------------------------------------------------------------------- /notebook/eigen/blas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/blas/GeneralRank1Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/GeneralRank1Update.h -------------------------------------------------------------------------------- /notebook/eigen/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/README.txt -------------------------------------------------------------------------------- /notebook/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /notebook/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/common.h -------------------------------------------------------------------------------- /notebook/eigen/blas/complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/complex_double.cpp -------------------------------------------------------------------------------- /notebook/eigen/blas/complex_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/complex_single.cpp -------------------------------------------------------------------------------- /notebook/eigen/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/double.cpp -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/chbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/chbmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/chpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/chpmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/complexdots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/complexdots.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/ctbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/ctbmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/d_cnjg.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/datatypes.h -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/drotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/drotm.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/drotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/drotmg.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/dsbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/dsbmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/dspmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/dtbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/dtbmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/lsame.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/r_cnjg.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/srotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/srotm.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/srotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/srotmg.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/ssbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/ssbmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/sspmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/stbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/stbmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/zhbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/zhbmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/zhpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/zhpmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/f2c/ztbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/f2c/ztbmv.c -------------------------------------------------------------------------------- /notebook/eigen/blas/fortran/complexdots.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/fortran/complexdots.f -------------------------------------------------------------------------------- /notebook/eigen/blas/level1_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/level1_cplx_impl.h -------------------------------------------------------------------------------- /notebook/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /notebook/eigen/blas/level1_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/level1_real_impl.h -------------------------------------------------------------------------------- /notebook/eigen/blas/level2_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/level2_cplx_impl.h -------------------------------------------------------------------------------- /notebook/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /notebook/eigen/blas/level2_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/level2_real_impl.h -------------------------------------------------------------------------------- /notebook/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /notebook/eigen/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/single.cpp -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/cblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/cblat1.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/cblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/cblat2.dat -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/cblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/cblat2.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/cblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/cblat3.dat -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/cblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/cblat3.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/dblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/dblat1.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/dblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/dblat2.dat -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/dblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/dblat2.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/dblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/dblat3.dat -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/dblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/dblat3.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/runblastest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/runblastest.sh -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/sblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/sblat1.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/sblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/sblat2.dat -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/sblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/sblat2.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/sblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/sblat3.dat -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/sblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/sblat3.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/zblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/zblat1.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/zblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/zblat2.dat -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/zblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/zblat2.f -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/zblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/zblat3.dat -------------------------------------------------------------------------------- /notebook/eigen/blas/testing/zblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/testing/zblat3.f -------------------------------------------------------------------------------- /notebook/eigen/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/blas/xerbla.cpp -------------------------------------------------------------------------------- /notebook/eigen/cmake/Eigen3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/Eigen3Config.cmake.in -------------------------------------------------------------------------------- /notebook/eigen/cmake/EigenTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/EigenTesting.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/EigenUninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/EigenUninstall.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindAdolc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindAdolc.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindBLAS.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindBLASEXT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindBLASEXT.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindCholmod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindCholmod.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindComputeCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindComputeCpp.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindEigen2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindEigen2.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindFFTW.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindGoogleHash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindGoogleHash.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindHWLOC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindHWLOC.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindKLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindKLU.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindLAPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindLAPACK.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindMPFR.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindMetis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindMetis.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindPTSCOTCH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindPTSCOTCH.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindPastix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindPastix.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindSPQR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindSPQR.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindScotch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindScotch.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindSuperLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindSuperLU.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindTriSYCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindTriSYCL.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindUmfpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindUmfpack.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/FindXsmm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/FindXsmm.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/RegexUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/RegexUtils.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/UseEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/UseEigen3.cmake -------------------------------------------------------------------------------- /notebook/eigen/cmake/language_support.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/cmake/language_support.cmake -------------------------------------------------------------------------------- /notebook/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /notebook/eigen/debug/gdb/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/debug/gdb/printers.py -------------------------------------------------------------------------------- /notebook/eigen/debug/msvc/eigen.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/debug/msvc/eigen.natvis -------------------------------------------------------------------------------- /notebook/eigen/demos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/demos/mandelbrot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/mandelbrot/README -------------------------------------------------------------------------------- /notebook/eigen/demos/mix_eigen_and_c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/mix_eigen_and_c/README -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/README -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/camera.cpp -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/camera.h -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/gpuhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/gpuhelper.cpp -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/gpuhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/gpuhelper.h -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/icosphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/icosphere.cpp -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/icosphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/icosphere.h -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/trackball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/trackball.cpp -------------------------------------------------------------------------------- /notebook/eigen/demos/opengl/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/demos/opengl/trackball.h -------------------------------------------------------------------------------- /notebook/eigen/doc/AsciiQuickReference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/AsciiQuickReference.txt -------------------------------------------------------------------------------- /notebook/eigen/doc/B01_Experimental.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/B01_Experimental.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/doc/ClassHierarchy.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/ClassHierarchy.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/Doxyfile.in -------------------------------------------------------------------------------- /notebook/eigen/doc/HiPerformance.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/HiPerformance.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/InplaceDecomposition.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/InplaceDecomposition.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/InsideEigenExample.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/InsideEigenExample.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/LeastSquares.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/LeastSquares.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/Manual.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/NewExpressionType.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/NewExpressionType.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/Overview.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/PassingByValue.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/PassingByValue.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/Pitfalls.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/Pitfalls.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/QuickReference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/QuickReference.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/QuickStartGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/QuickStartGuide.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/SparseLinearSystems.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/SparseLinearSystems.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/SparseQuickReference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/SparseQuickReference.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/StlContainers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/StlContainers.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/StorageOrders.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/StorageOrders.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TemplateKeyword.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TemplateKeyword.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TopicAliasing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TopicAliasing.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TopicAssertions.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TopicAssertions.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TopicCMakeGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TopicCMakeGuide.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TopicLazyEvaluation.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TopicLazyEvaluation.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TopicMultithreading.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TopicMultithreading.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TopicResizing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TopicResizing.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TopicScalarTypes.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TopicScalarTypes.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TopicVectorization.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TopicVectorization.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TutorialArrayClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TutorialArrayClass.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TutorialGeometry.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TutorialGeometry.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TutorialMapClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TutorialMapClass.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TutorialMatrixClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TutorialMatrixClass.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TutorialReshape.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TutorialReshape.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TutorialSTL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TutorialSTL.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/TutorialSparse.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/TutorialSparse.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/UnalignedArrayAssert.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/UnalignedArrayAssert.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/UsingIntelMKL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/UsingIntelMKL.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/UsingNVCC.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/UsingNVCC.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/WrongStackAlignment.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/WrongStackAlignment.dox -------------------------------------------------------------------------------- /notebook/eigen/doc/eigen_navtree_hacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/eigen_navtree_hacks.js -------------------------------------------------------------------------------- /notebook/eigen/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/eigendoxy.css -------------------------------------------------------------------------------- /notebook/eigen/doc/eigendoxy_footer.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/eigendoxy_footer.html.in -------------------------------------------------------------------------------- /notebook/eigen/doc/eigendoxy_header.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/eigendoxy_header.html.in -------------------------------------------------------------------------------- /notebook/eigen/doc/eigendoxy_layout.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/eigendoxy_layout.xml.in -------------------------------------------------------------------------------- /notebook/eigen/doc/eigendoxy_tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/eigendoxy_tabs.css -------------------------------------------------------------------------------- /notebook/eigen/doc/examples/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/examples/.krazy -------------------------------------------------------------------------------- /notebook/eigen/doc/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/examples/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/doc/examples/Cwise_erf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/examples/Cwise_erf.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/examples/Cwise_erfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/examples/Cwise_erfc.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/examples/class_Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/examples/class_Block.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/ftv2node.png -------------------------------------------------------------------------------- /notebook/eigen/doc/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/ftv2pnode.png -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/.krazy -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_abs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_abs.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_abs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_abs2.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_acos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_acos.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_arg.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_asin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_asin.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_atan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_atan.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_ceil.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_cos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_cos.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_cosh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_cosh.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_cube.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_exp.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_floor.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_isInf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_isInf.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_isNaN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_isNaN.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_less.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_less.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_log.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_log10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_log10.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_max.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_min.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_minus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_minus.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_plus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_plus.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_pow.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_round.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_sign.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_sin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_sin.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_sinh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_sinh.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_sqrt.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_tan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_tan.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Cwise_tanh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Cwise_tanh.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/IOFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/IOFormat.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/LLT_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/LLT_example.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/LLT_solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/LLT_solve.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/Map_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/snippets/Map_simple.cpp -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /notebook/eigen/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /notebook/eigen/doc/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/doc/tutorial.cpp -------------------------------------------------------------------------------- /notebook/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /notebook/eigen/failtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/failtest/bdcsvd_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/bdcsvd_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/colpivqr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/colpivqr_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/eigensolver_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/eigensolver_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/fullpivlu_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/fullpivlu_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/fullpivqr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/fullpivqr_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/jacobisvd_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/jacobisvd_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/ldlt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/ldlt_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/llt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/llt_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/qr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/qr_int.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/ref_1.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/ref_2.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/ref_3.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/ref_4.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/ref_5.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/sparse_ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/sparse_ref_1.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/sparse_ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/sparse_ref_2.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/sparse_ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/sparse_ref_3.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/sparse_ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/sparse_ref_4.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/sparse_ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/sparse_ref_5.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/swap_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/swap_1.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/swap_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/swap_2.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/ternary_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/ternary_1.cpp -------------------------------------------------------------------------------- /notebook/eigen/failtest/ternary_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/failtest/ternary_2.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/lapack/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/cholesky.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/clacgv.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/cladiv.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/clarf.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/clarfb.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/clarfg.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/clarft.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/complex_double.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/complex_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/complex_single.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dladiv.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dlamch.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dlapy2.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dlapy3.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dlarf.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dlarfb.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dlarfg.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dlarft.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/double.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/dsecnd_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/dsecnd_NONE.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/eigenvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/eigenvalues.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/ilaclc.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/ilaclr.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/iladlc.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/iladlr.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/ilaslc.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/ilaslr.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/ilazlc.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/ilazlr.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/lapack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/lapack_common.h -------------------------------------------------------------------------------- /notebook/eigen/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/lu.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/second_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/second_NONE.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/single.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/sladiv.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/slamch.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/slapy2.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/slapy3.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/slarf.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/slarfb.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/slarfg.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/slarft.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/svd.cpp -------------------------------------------------------------------------------- /notebook/eigen/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/zlacgv.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/zladiv.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/zlarf.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/zlarfb.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/zlarfg.f -------------------------------------------------------------------------------- /notebook/eigen/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/lapack/zlarft.f -------------------------------------------------------------------------------- /notebook/eigen/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/scripts/buildtests.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/scripts/buildtests.in -------------------------------------------------------------------------------- /notebook/eigen/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/scripts/check.in -------------------------------------------------------------------------------- /notebook/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /notebook/eigen/scripts/eigen_gen_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/scripts/eigen_gen_docs -------------------------------------------------------------------------------- /notebook/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /notebook/eigen/scripts/relicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/scripts/relicense.py -------------------------------------------------------------------------------- /notebook/eigen/test/AnnoyingScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/AnnoyingScalar.h -------------------------------------------------------------------------------- /notebook/eigen/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/adjoint.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/array_cwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/array_cwise.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/array_for_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/array_for_matrix.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/array_of_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/array_of_string.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/array_replicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/array_replicate.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/array_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/array_reverse.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/bandmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/bandmatrix.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/basicstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/basicstuff.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/bdcsvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/bdcsvd.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/bicgstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/bicgstab.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/block.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/boostmultiprec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/boostmultiprec.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/bug1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/bug1213.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/bug1213.h -------------------------------------------------------------------------------- /notebook/eigen/test/bug1213_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/bug1213_main.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/cholesky.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/cholmod_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/cholmod_support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/commainitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/commainitializer.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/conjugate_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/conjugate_gradient.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/conservative_resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/conservative_resize.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/constructor.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/corners.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/ctorleak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/ctorleak.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/denseLM.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/dense_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/dense_storage.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/determinant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/determinant.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/diagonal.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/diagonalmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/diagonalmatrices.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/dontalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/dontalign.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/dynalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/dynalloc.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/eigen2support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/eigen2support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/eigensolver_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/eigensolver_complex.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/eigensolver_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/eigensolver_generic.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebook/eigen/test/evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/evaluators.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/exceptions.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/fastmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/fastmath.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/first_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/first_aligned.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/geo_alignedbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/geo_alignedbox.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/geo_eulerangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/geo_eulerangles.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/geo_homogeneous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/geo_homogeneous.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/geo_hyperplane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/geo_hyperplane.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/geo_orthomethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/geo_orthomethods.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/geo_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/geo_quaternion.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/geo_transformations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/geo_transformations.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/gpu_basic.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/gpu_basic.cu -------------------------------------------------------------------------------- /notebook/eigen/test/gpu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/gpu_common.h -------------------------------------------------------------------------------- /notebook/eigen/test/half_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/half_float.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/hessenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/hessenberg.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/householder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/householder.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/incomplete_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/incomplete_cholesky.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/indexed_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/indexed_view.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/integer_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/integer_types.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/inverse.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/is_same_dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/is_same_dense.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/jacobi.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/jacobisvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/jacobisvd.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/klu_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/klu_support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/linearstructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/linearstructure.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/lscg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/lscg.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/lu.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/main.h -------------------------------------------------------------------------------- /notebook/eigen/test/mapped_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/mapped_matrix.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/mapstaticmethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/mapstaticmethods.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/mapstride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/mapstride.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/meta.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/metis_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/metis_support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/miscmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/miscmatrices.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/mixingtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/mixingtypes.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/mpl2only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/mpl2only.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/nestbyvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/nestbyvalue.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/nesting_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/nesting_ops.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/nomalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/nomalloc.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/nullary.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/num_dimensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/num_dimensions.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/numext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/numext.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/packetmath.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/pardiso_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/pardiso_support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/pastix_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/pastix_support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/permutationmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/permutationmatrices.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/prec_inverse_4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/prec_inverse_4x4.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product.h -------------------------------------------------------------------------------- /notebook/eigen/test/product_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_extra.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_large.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_large.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_mmtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_mmtr.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_notemporary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_notemporary.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_selfadjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_selfadjoint.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_small.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_symm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_symm.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_syrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_syrk.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_trmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_trmm.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_trmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_trmv.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/product_trsolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/product_trsolve.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/qr.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/qr_colpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/qr_colpivoting.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/qr_fullpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/qr_fullpivoting.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/qtvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/qtvector.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/rand.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/real_qz.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/redux.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/ref.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/reshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/reshape.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/resize.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/rvalue_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/rvalue_types.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/schur_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/schur_complex.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/schur_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/schur_real.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/selfadjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/selfadjoint.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/simplicial_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/simplicial_cholesky.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sizeof.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sizeoverflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sizeoverflow.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/smallvectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/smallvectors.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/solverbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/solverbase.h -------------------------------------------------------------------------------- /notebook/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse.h -------------------------------------------------------------------------------- /notebook/eigen/test/sparseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparseLM.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparse_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse_basic.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparse_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse_block.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparse_permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse_permutations.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse_product.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparse_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse_ref.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparse_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse_solver.h -------------------------------------------------------------------------------- /notebook/eigen/test/sparse_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse_solvers.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparse_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparse_vector.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparselu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparselu.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/sparseqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/sparseqr.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/special_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/special_numbers.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/split_test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/split_test_helper.h -------------------------------------------------------------------------------- /notebook/eigen/test/spqr_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/spqr_support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/stable_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/stable_norm.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/stddeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/stddeque.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/stddeque_overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/stddeque_overload.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/stdlist.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/stdlist_overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/stdlist_overload.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/stdvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/stdvector.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/stdvector_overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/stdvector_overload.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/stl_iterators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/stl_iterators.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/superlu_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/superlu_support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/svd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/svd_common.h -------------------------------------------------------------------------------- /notebook/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/svd_fill.h -------------------------------------------------------------------------------- /notebook/eigen/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/swap.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/symbolic_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/symbolic_index.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/triangular.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/type_alias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/type_alias.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/umeyama.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/umfpack_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/umfpack_support.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/unalignedassert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/unalignedassert.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/unalignedcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/unalignedcount.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/vectorization_logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/vectorization_logic.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/vectorwiseop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/vectorwiseop.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/visitor.cpp -------------------------------------------------------------------------------- /notebook/eigen/test/zerosized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/test/zerosized.cpp -------------------------------------------------------------------------------- /notebook/eigen/unsupported/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/CMakeLists.txt -------------------------------------------------------------------------------- /notebook/eigen/unsupported/Eigen/AutoDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/Eigen/AutoDiff -------------------------------------------------------------------------------- /notebook/eigen/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/Eigen/BVH -------------------------------------------------------------------------------- /notebook/eigen/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/Eigen/FFT -------------------------------------------------------------------------------- /notebook/eigen/unsupported/Eigen/Skyline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/Eigen/Skyline -------------------------------------------------------------------------------- /notebook/eigen/unsupported/Eigen/Splines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/Eigen/Splines -------------------------------------------------------------------------------- /notebook/eigen/unsupported/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/README.txt -------------------------------------------------------------------------------- /notebook/eigen/unsupported/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/doc/Overview.dox -------------------------------------------------------------------------------- /notebook/eigen/unsupported/test/BVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/test/BVH.cpp -------------------------------------------------------------------------------- /notebook/eigen/unsupported/test/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/test/FFT.cpp -------------------------------------------------------------------------------- /notebook/eigen/unsupported/test/FFTW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/test/FFTW.cpp -------------------------------------------------------------------------------- /notebook/eigen/unsupported/test/dgmres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/test/dgmres.cpp -------------------------------------------------------------------------------- /notebook/eigen/unsupported/test/gmres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/test/gmres.cpp -------------------------------------------------------------------------------- /notebook/eigen/unsupported/test/minres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/test/minres.cpp -------------------------------------------------------------------------------- /notebook/eigen/unsupported/test/splines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/eigen/unsupported/test/splines.cpp -------------------------------------------------------------------------------- /notebook/figs/Lagrange_multiplier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/Lagrange_multiplier.png -------------------------------------------------------------------------------- /notebook/figs/agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/agents.png -------------------------------------------------------------------------------- /notebook/figs/alap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/alap.png -------------------------------------------------------------------------------- /notebook/figs/asap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/asap.png -------------------------------------------------------------------------------- /notebook/figs/auto_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/auto_diff.png -------------------------------------------------------------------------------- /notebook/figs/bb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/bb1.png -------------------------------------------------------------------------------- /notebook/figs/bb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/bb2.png -------------------------------------------------------------------------------- /notebook/figs/bb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/bb3.png -------------------------------------------------------------------------------- /notebook/figs/box_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/box_loop.png -------------------------------------------------------------------------------- /notebook/figs/data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/data_flow.png -------------------------------------------------------------------------------- /notebook/figs/elim1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/elim1.png -------------------------------------------------------------------------------- /notebook/figs/elim2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/elim2.png -------------------------------------------------------------------------------- /notebook/figs/inference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/inference.png -------------------------------------------------------------------------------- /notebook/figs/mcmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/mcmc.png -------------------------------------------------------------------------------- /notebook/figs/operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/operations.png -------------------------------------------------------------------------------- /notebook/figs/pagerank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/pagerank.png -------------------------------------------------------------------------------- /notebook/figs/score_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/score_distribution.png -------------------------------------------------------------------------------- /notebook/figs/spectral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/figs/spectral.png -------------------------------------------------------------------------------- /notebook/lm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/notebook/lm.png -------------------------------------------------------------------------------- /notebook/numbers.txt: -------------------------------------------------------------------------------- 1 | a,b,c # can also skip headers 2 | 1,2,3 3 | 4,5,6 -------------------------------------------------------------------------------- /projects/FinalProject.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliburn/sta-663-2019/HEAD/projects/FinalProject.ipynb --------------------------------------------------------------------------------