惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recent Announcements
Recent Announcements
Microsoft Security Blog
Microsoft Security Blog
Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
D
DataBreaches.Net
U
Unit 42
P
Proofpoint News Feed
I
InfoQ
Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
博客园 - Franky
博客园_首页
IT之家
IT之家
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志

博客园 - 林海

JS数组方法汇总 array数组元素的添加和删除 [转]开源Math.NET基础数学类库使用(02)矩阵向量计算 MathNet的学习笔记2 3D C#后台操作JSON数据 Linq to EF 与Linq to Object 使用心得 jQuery 复合选择器应用的几个例子 常用jQuery选择器总结 (二) 常用jQuery选择器总结 MVC @Html 扩展方法 jQuery 自定义函数 css 伪类选择器 css3中的属性选择器 jquery 功能优化 jquery 替换元素函数 jquery ajax应用 jquery 操作对象和集合 jquery 管理包装元素集合 jQuery 过滤选择器
MathNet的学习笔记1
林海 · 2015-04-14 · via 博客园 - 林海

Posted on 2015-04-14 09:56  林海  阅读(555)  评论(0)    收藏  举报

Net数值计算MathNet.Numerics类库

一、Net自带的数值计算:System.Numerics

1、大整数BitInteger

方法:除数和余数、最大公约数

2、复数Complex

属性:实部、虚部、量值、相位

方法:共轭、倒数

二、MathNet.Numerics

1、组合Combinatorics

方法:

Combinations计算无重复的组合数目

CombinationsWithRepetition计算带重复的组合数目

Permutations计算无重复的排列数目

Variations计算无重复的变化数目

VariationsWithRepetition计算带重复的变化数目

2、Complex32

和Complex类似

3、Evaluate

方法:

Polynomial估算多项式

4、Sorting

方法:

Sort快速排序

5、SpecialFunctions

计算某些特殊函数的值

6、Trig

三角函数

7、