Browse Source

Readme: new short installation instructions section

pull/36/head
Christoph Ruegg 16 years ago
parent
commit
283f036cb1
  1. 9
      README.markdown
  2. 2
      build/NuGet/.gitignore
  3. 7
      src/MathNet.Numerics.sln

9
README.markdown

@ -3,7 +3,7 @@
Math.NET Numerics is an opensource **numerical library for .Net, Silverlight and Mono**. Math.NET Numerics is an opensource **numerical library for .Net, Silverlight and Mono**.
Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Covered topics include special functions, linear algebra, probability models, random numbers, interpolation, integral transforms and more. Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Covered topics include special functions, linear algebra, probability models, random numbers, interpolation, integral transforms (FFT) and more.
Math.NET Numerics is the result of merging [dnAnalytics](http://dnanalytics.codeplex.com/) with [Math.NET Iridium](http://www.mathdotnet.com/Iridium.aspx) and is intended to replace both. It targets Microsoft .Net 4.0, Silverlight 4 and Mono, and in addition to purely managed implementations will also support native hardware optimization (MKL, ATLAS). Math.NET Numerics is the result of merging [dnAnalytics](http://dnanalytics.codeplex.com/) with [Math.NET Iridium](http://www.mathdotnet.com/Iridium.aspx) and is intended to replace both. It targets Microsoft .Net 4.0, Silverlight 4 and Mono, and in addition to purely managed implementations will also support native hardware optimization (MKL, ATLAS).
@ -17,10 +17,15 @@ Quick Links
* Source Code: [github.com/mathnet](http://github.com/mathnet/mathnet-numerics) * Source Code: [github.com/mathnet](http://github.com/mathnet/mathnet-numerics)
* Downloads: [mathnetnumerics.codeplex.com](http://mathnetnumerics.codeplex.com/releases/) * Downloads: [mathnetnumerics.codeplex.com](http://mathnetnumerics.codeplex.com/releases/)
* Discussions: [mathnetnumerics.codeplex.com](http://mathnetnumerics.codeplex.com/discussions) * Discussions: [mathnetnumerics.codeplex.com](http://mathnetnumerics.codeplex.com/discussions)
* Issue Tracker: [mathnetnumerics.codeplex.com](http://mathnetnumerics.codeplex.com/workitem/list/advanced) * Work Items and Bug Tracker: [mathnetnumerics.codeplex.com](http://mathnetnumerics.codeplex.com/workitem/list/advanced)
* Ideas & Feedback: [feedback.mathdotnet.com](http://feedback.mathdotnet.com) * Ideas & Feedback: [feedback.mathdotnet.com](http://feedback.mathdotnet.com)
* Twitter: [@MathNetNumerics](http://twitter.com/MathNetNumerics) * Twitter: [@MathNetNumerics](http://twitter.com/MathNetNumerics)
Installation Instructions
-------------------------
Download the *MathNet.Numerics.dll* assembly, add a reference to it to your project and you're done. To make this even simpler we publish binary releases to the [**NuGet Gallery**](http://nuget.org/) as package *MathNet.Numerics* (or *MathNet.Numerics.FSharp* for F# integration). Altenatively we also publish binary releases including documentation on [CodePlex](http://mathnetnumerics.codeplex.com/releases).
Team & Contributors Team & Contributors
------------------- -------------------

2
build/NuGet/.gitignore

@ -0,0 +1,2 @@
lib

7
src/MathNet.Numerics.sln

@ -19,6 +19,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{49EE
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "UnitTests\UnitTests.csproj", "{DAF07AA8-C5C9-4963-98F7-2C3285064DAD}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "UnitTests\UnitTests.csproj", "{DAF07AA8-C5C9-4963-98F7-2C3285064DAD}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Readme", "Readme", "{C2F37492-38AE-4186-8A7F-17B0B080942C}"
ProjectSection(SolutionItems) = preProject
..\AUTHORS.markdown = ..\AUTHORS.markdown
..\COPYRIGHT.markdown = ..\COPYRIGHT.markdown
..\README.markdown = ..\README.markdown
EndProjectSection
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU

Loading…
Cancel
Save