From 9136a2debfabd782521f291da09fb2b5e9c68506 Mon Sep 17 00:00:00 2001 From: lmj01 Date: Thu, 9 May 2024 11:25:18 +0800 Subject: [PATCH] update --- cg/library/NumericCalculation.md | 19 +++++++++++++++++++ cg/library/eigen.md | 8 -------- dev-note/maven.md | 2 +- index/computerScience.md | 12 +++--------- 4 files changed, 23 insertions(+), 18 deletions(-) create mode 100644 cg/library/NumericCalculation.md delete mode 100644 cg/library/eigen.md diff --git a/cg/library/NumericCalculation.md b/cg/library/NumericCalculation.md new file mode 100644 index 0000000..ddaa4d1 --- /dev/null +++ b/cg/library/NumericCalculation.md @@ -0,0 +1,19 @@ +# LinearLibrary +> 数值计算 + +## [Eigen](https://eigen.tuxfamily.org/index.php?title=Main_Page) +> 矩阵库 + +- [Eigen document](https://eigen.tuxfamily.org/dox/) + +### [Storage orders](https://eigen.tuxfamily.org/dox/group__TopicStorageOrders.html) + +All Eigen matrices default to column-major storage order, but this can be changed to row-major + +## [MUMPS : a parallel sparse direct solver](https://mumps-solver.org/index.php) +> MUMPS: MUltifrontal Massively Parallel sparse direct Solver +[github Cmake编译库,从源码拉起下来进行编译](https://github.com/scivision/mumps) + +## 其他 +- [求取近似值的一个小技巧](https://www.johndcook.com/blog/2023/02/07/mediant-approximation-trick/) +- [ALGLIB is a cross-platform numerical analysis and data processing library. It supports five programming languages (C++, C#, Java, Python, Delphi) and several operating systems (Windows and POSIX, including Linux). ](https://www.alglib.net/) diff --git a/cg/library/eigen.md b/cg/library/eigen.md deleted file mode 100644 index 9cd7773..0000000 --- a/cg/library/eigen.md +++ /dev/null @@ -1,8 +0,0 @@ -# [Eigen](https://eigen.tuxfamily.org/index.php?title=Main_Page) -> 矩阵库 - -- [Eigen document](https://eigen.tuxfamily.org/dox/) - -## [Storage orders](https://eigen.tuxfamily.org/dox/group__TopicStorageOrders.html) - -All Eigen matrices default to column-major storage order, but this can be changed to row-major diff --git a/dev-note/maven.md b/dev-note/maven.md index c79380f..0c14e04 100644 --- a/dev-note/maven.md +++ b/dev-note/maven.md @@ -23,5 +23,5 @@ document.add(new Paragraph("hellos你好").setFont(f3)); ``` ## 工具 - +[mvn的仓库](https://mvnrepository.com/) [ Spring Initializr在线生成工程模板](https://start.spring.io/) \ No newline at end of file diff --git a/index/computerScience.md b/index/computerScience.md index 44f2a22..5765c53 100644 --- a/index/computerScience.md +++ b/index/computerScience.md @@ -25,7 +25,6 @@ - [hash](/cpl/data.structure/hash.md) - [LRU](/cpl/data.structure/LRU.md) - [树形结构](/cpl/data.structure/Tree.md) - ### 相关参考 - [Promises/A+, An open standard for sound, interoperable JavaScript promises—by implementers, for implementers.](https://promisesaplus.com/) - [core analyzer -- A power tool to understand memory layout](https://core-analyzer.sourceforge.net/index_files/Page525.html) @@ -112,6 +111,7 @@ ### Tool +- [数值计算](/cg/library/NumericCalculation.md) - [PAG Portable Animated Graphics](https://pag.art/) - [3d model file](/cg/tools/modelFile.md) - [Effekseer特效编辑器](https://github.com/effekseer/Effekseer) @@ -131,20 +131,14 @@ ## 网络 - [著名技术作者 Beej 新发布的计算机网络底层概念的英文教程Beej's Guide to Network Concepts)](https://beej.us/guide/bgnet0/html/split/index.html) + ### Distributed System > 分布式系统 -- [协同编辑](../articles/2023/associateEditor.md) +- [协同编辑](/articles/2023/associateEditor.md) - [Building a collaborative text editor in Go协同开发文本编辑器的go实现思考](https://www.aadhav.me/posts/collaborative-editor) - [CRDT相关的资料集A Conflict-free Replicated Data Type (CRDT) is a data structure that simplifies distributed data storage systems and multi-user applications.](https://crdt.tech/) - -## 数值计算 -> numeric calculation - -- [求取近似值的一个小技巧](https://www.johndcook.com/blog/2023/02/07/mediant-approximation-trick/) -- [ALGLIB is a cross-platform numerical analysis and data processing library. It supports five programming languages (C++, C#, Java, Python, Delphi) and several operating systems (Windows and POSIX, including Linux). ](https://www.alglib.net/) - ## AI - [神经网络](/ai/neural.network.md) - [模型](/ai/model.md)