Browse Source

Docs: simplify home page, fix tooltips

pull/305/head
Christoph Ruegg 11 years ago
parent
commit
a97604768c
  1. 36
      docs/content/index.md
  2. 2
      paket.dependencies
  3. 8
      paket.lock
  4. BIN
      tools/paket/paket.bootstrapper.exe

36
docs/content/index.md

@ -8,24 +8,26 @@ regression, optimization problems and more.
Math.NET Numerics is part of the [Math.NET initiative](http://www.mathdotnet.com/) Math.NET Numerics is part of the [Math.NET initiative](http://www.mathdotnet.com/)
and is the result of merging dnAnalytics with Math.NET Iridium, replacing both. and is the result of merging dnAnalytics with Math.NET Iridium, replacing both.
It targets Microsoft .Net 4, .Net 3.5 and Mono (Windows, Linux and Mac), Available for free under the [MIT/X11 License](License.html).
Silverlight 5, WindowsPhone 8, Windows 8/Store (PCL 47, 136) and Android/iOS (Xamarin). It targets Microsoft .Net 4, .Net 3.5 and Mono
In addition to a purely managed implementation it also supports native hardware (Windows, Linux and Mac), Silverlight 5, WindowsPhone 8 and 8.1, Windows 8/Store
optimization. Available for free under the [MIT/X11 License](License.html). (PCL 7, 47, 78, 259 and 328) and Android/iOS (Xamarin). In addition to a purely
managed implementation it also supports native hardware optimization.
See [Platform Support](Compatibility.html) for full details.
NuGet Packages NuGet Packages
-------------- --------------
- [**MathNet.Numerics**](https://www.nuget.org/packages/MathNet.Numerics/) - core package - [**MathNet.Numerics**](https://www.nuget.org/packages/MathNet.Numerics/) - core package
- [**MathNet.Numerics.FSharp**](https://www.nuget.org/packages/MathNet.Numerics.FSharp/) - optional extensions for a better F# experience. - [**MathNet.Numerics.FSharp**](https://www.nuget.org/packages/MathNet.Numerics.FSharp/) - optional extensions for a better experience when using F#.
The packages support .Net 4.0, .Net 3.5 and Mono on Windows, Linux and Mac,
as well as PCL Portable Profiles 7, 47, 78, 259 and 328 for Windows 8, Silverlight 5,
Windows Phone/SL 8, Windows Phone 8.1.
See [NuGet & Binaries](Packages.html) for a complete list of our NuGet packages, See [NuGet & Binaries](Packages.html) for a complete list of our NuGet packages,
Zip files and the release archive, and [Platform Support](Compatibility.html) Zip files and the release archive.
for details on what platforms are supported and how their limitations are handled.
[hide]
#I "../../out/lib/net40"
#r "MathNet.Numerics.dll"
#r "MathNet.Numerics.FSharp.dll"
Using Math.NET Numerics with C# Using Math.NET Numerics with C#
------------------------------- -------------------------------
@ -58,9 +60,15 @@ F# and F# Interactive
Even though the core of Math.NET Numerics is written in C#, it aims to support F# Even though the core of Math.NET Numerics is written in C#, it aims to support F#
just as well. In order to achieve this we recommend to reference the `MathNet.Numerics.FSharp` just as well. In order to achieve this we recommend to reference the `MathNet.Numerics.FSharp`
package as well (in addition to `MathNet.Numerics`) which adds a few modules to make it more package in addition to `MathNet.Numerics`, which adds a few modules to make it more
idiomatic and includes arbitrary precision types (BigInteger, BigRational). idiomatic and includes arbitrary precision types (BigInteger, BigRational).
[lang=fsharp]
open MathNet.Numerics.LinearAlgebra
let m = matrix [[ 1.0; 2.0 ]
[ 3.0; 4.0 ]]
let m' = m.Inverse()
It also works well in the interactive F# environment (REPL) which can be launched with It also works well in the interactive F# environment (REPL) which can be launched with
`fsharpi` on all platforms (including Linux). As a start let's enter the following lines `fsharpi` on all platforms (including Linux). As a start let's enter the following lines
into F# interactive. Append `;;` to the end of a line to run all code up to there into F# interactive. Append `;;` to the end of a line to run all code up to there
@ -68,9 +76,7 @@ immediately and print the result to the output. Use the tab key for auto-complet
For convenience our F# packages include a small script that sets everything up properly: For convenience our F# packages include a small script that sets everything up properly:
[lang=fsharp] [lang=fsharp]
// this load statement is only needed in F# interactive, #load "../packages/MathNet.Numerics.FSharp/MathNet.Numerics.fsx"
// in a compiled F# project you'd use normal .Net assembly references.
#load "../packages/MathNet.Numerics.FSharp.3.0.0/MathNet.Numerics.fsx"
open MathNet.Numerics open MathNet.Numerics
SpecialFunctions.Gamma(0.5) SpecialFunctions.Gamma(0.5)

2
paket.dependencies

@ -19,4 +19,4 @@ nuget FsUnit ~> 1.3
nuget FAKE ~> 3.5 nuget FAKE ~> 3.5
nuget NUnit.Runners ~> 2.6 nuget NUnit.Runners ~> 2.6
nuget FSharp.Formatting !~> 2.4 nuget FSharp.Formatting !~> 2.4
nuget NuGet.CommandLine nuget NuGet.CommandLine

8
paket.lock

@ -3,11 +3,11 @@ NUGET
specs: specs:
BenchShark (1.0.0) BenchShark (1.0.0)
ConsoleDump (0.6.0.1) ConsoleDump (0.6.0.1)
FAKE (3.26.7) FAKE (3.28.0)
FSharp.Compiler.Service (0.0.82) FSharp.Compiler.Service (0.0.86)
FSharp.Core (3.1.2.1) FSharp.Core (3.1.2.1)
FSharp.Formatting (2.7.5) FSharp.Formatting (2.8.0)
FSharp.Compiler.Service (>= 0.0.82) FSharp.Compiler.Service (>= 0.0.86)
FSharpVSPowerTools.Core (>= 1.7.0) FSharpVSPowerTools.Core (>= 1.7.0)
FSharpVSPowerTools.Core (1.7.0) FSharpVSPowerTools.Core (1.7.0)
FSharp.Compiler.Service (>= 0.0.81) FSharp.Compiler.Service (>= 0.0.81)

BIN
tools/paket/paket.bootstrapper.exe

Binary file not shown.
Loading…
Cancel
Save