- 授权协议: Ms-PL
- 开发语言: C#
- 操作系统: Windows
- 软件首页: http://physicalmeasure.codeplex.com/
软件介绍
PhysicalMeasure 是一个 C# 库,根据特定值和单位来处理物理计量单位,支持多个单位系统的转换。
PhysicalMeasure 要求 .NET framework 4.0.
PhysicalMeasure 可以用来展示和处理物理度量,或者计算物理属性。
示例
using PhysicalMeasure;public void CalculateEnergyIn1Gram()
{
PhysicalQuantity m = new PhysicalQuantity(0.001, SI.kg);
PhysicalQuantity c = new PhysicalQuantity(299792458, SI.m / SI.s);
PhysicalQuantity E = m * c.Pow(2);
PhysicalQuantity expected = new PhysicalQuantity(0.001 * 299792458 * 299792458, SI.J);
Assert.AreEqual(expected, E);
}Iterative Methods for Sparse Linear Systems, Second Edition
Yousef Saad / Society for Industrial and Applied Mathematics / 2003-04-30 / USD 102.00
Tremendous progress has been made in the scientific and engineering disciplines regarding the use of iterative methods for linear systems. The size and complexity of linear and nonlinear systems arisi......一起来看看 《Iterative Methods for Sparse Linear Systems, Second Edition》 这本书的介绍吧!
