Basic Tensors in F# QuickStart Sample
Illustrates the basic use of the Tensor class for working with tensors in F#.
View this sample in: C# Visual Basic
// Illustrates the use of the Tensor class in the
// Numerics.NET namespace of Numerics.NET.
#light
open System
// Tensor classes reside in the Numerics.NET.Tensors
// namespace.
open Numerics.NET.Tensors
open Numerics.NET.FSharp
// The license is verified at runtime. We're using
// a 30 day trial key here. For more information, see
// https://numerics.net/trial-key
let licensed = Numerics.NET.License.Verify("64542-18980-57619-62268")
//
// Constructing tensors
//
// The simplest tensor is a scalar. It has no dimensions.
// It is created using the CreateScalar method:
let s = Tensor.CreateScalar(5.0)
Console.WriteLine($"s.IsScalar = {s.IsScalar}")
// To create tensors with 1 or more dimensions, there are many options,
// including:
// Option #1: Create an empty tensor.
// The element type must be specified as a generic
// type parameter. The dimensions are specified
// as itnegers. The following constructs a tensor
// with 3 rows and 5 columns:
let t1 = Tensor.Create<double>(3, 5)
Console.WriteLine($"t1 = {t1}")
// Option #2: specify an array of rank up to 4.
// By default, elements are taken in C# order.
// Therefore, the following creates a tensor
// with 4 rows and 3 columns:
let elements2D = array2D [
[1; 2; 3]
[2; 3; 4]
[3; 4; 5]
[4; 5; 6]
]
let t2 = Tensor.CreateFromArray(elements2D)
Console.WriteLine($"t2 = {t2}")
// Option #3: Cast an array to a tensor.
let t3 = Tensor<int>.op_Explicit elements2D
Console.WriteLine($"t3 = {t3}")
// Option #4: Specify an array of elements, and
// a tuple with the dimensions. The elements are listed
// in C# style order (last index changes fastest).
// The following tensor is identical to t2:
let elements = [|
1.0; 2.0; 3.0;
2.0; 3.0; 4.0;
3.0; 4.0; 5.0;
4.0; 5.0; 6.0;
|]
let t4 = Tensor.CreateFromArray(elements, new TensorShape(4, 3))
Console.WriteLine($"t4 = {t4}")
// Option #5: same as above, but use a memory block
// to store the elements. This can be both managed
// or unmanaged memory. The following tensor is
// identical to t3:
let t5 = Tensor.CreateFromMemory(elements.AsMemory(), new TensorShape(4, 3), createView=true)
Console.WriteLine($"t5 = {t5}")
// Option #6: Create a tensor from a function.
// Specify the dimensions and a function that
// returns the value of each element:
let t6 = Tensor.CreateFromFunction(new TensorShape(10, 10), fun i j -> 1.0 / (1.0 + float (i + j)))
Console.WriteLine($"t6 = {t6:F5}")
// Option #7-9: Create a range of values:
let t7 = Tensor.CreateRange(10)
// t7 -> [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ]
let t8 = Tensor.CreateGeometricRange(1.0, 1000.0, 4)
// t8 -> [ 1, 10, 100, 1000 ]
let t9 = Tensor.CreateLogarithmicRange(0.0, 3.0, 4)
// t9 -> [ 1, 10, 100, 1000 ]
// Option #10-11: Create a tensor with random elements:
let t10 = Tensor.CreateRandom(new TensorShape(10, 10))
let t11 = Tensor.CreateRandomNormal(new TensorShape(5, 7, 18), new System.Random(17))
//
// Tensor properties
//
// The Rank property gives the rank or
// number of dimensions of the tensor:
Console.WriteLine($"t1.Rank = {t1.Rank}")
// The Shape property gives the number of elements
// along each dimension:
Console.WriteLine($"t1.Shape = {t1.Shape}")
Console.WriteLine($"t1 has {t1.Shape[0]} rows and {t1.Shape[1]} columns.")
// The FlattenedLength property gives the total number of
// elements in the tensor:
Console.WriteLine($"t1.Length = {t1.FlattenedLength}")
#if TENSOR_STORAGE
// The Storage property gives access to the underlying
// storage of the tensor. This is a read-only property.
// The storage is a memory block that contains
// the elements of the tensor in the order specified by
// the Layout property.
let t1Memory = t1.Storage
Console.WriteLine($"t1.Storage = {t1.Storage}")
#endif
let t1Layout = t1.Layout
// The Layout gives the strides between elements
// along each axis in the tensor:
Console.WriteLine($"t1 strides along axis 0: {t1Layout[0]}")
Console.WriteLine($"t1 strides along axis 1: {t1Layout[1]}")
Console.Write("Press Enter key to exit...")
Console.ReadLine() |> ignore