├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CN ├── chap1_about_eigen.md ├── chap2_eigen_types.md ├── chap3_basic_operations.md ├── chap4_advanced_operations.md └── chap5_more.md ├── EN ├── chap1_about_eigen.md ├── chap2_eigen_types.md ├── chap3_basic_operations.md ├── chap4_advanced_operations.md └── chap5_more.md ├── README.md └── _config.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CN/chap1_about_eigen.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CN/chap2_eigen_types.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CN/chap3_basic_operations.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CN/chap4_advanced_operations.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CN/chap5_more.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EN/chap1_about_eigen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/EN/chap1_about_eigen.md -------------------------------------------------------------------------------- /EN/chap2_eigen_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/EN/chap2_eigen_types.md -------------------------------------------------------------------------------- /EN/chap3_basic_operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/EN/chap3_basic_operations.md -------------------------------------------------------------------------------- /EN/chap4_advanced_operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/EN/chap4_advanced_operations.md -------------------------------------------------------------------------------- /EN/chap5_more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/EN/chap5_more.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIBluefisher/Eigen_Handbook/HEAD/_config.yml --------------------------------------------------------------------------------