ThreeDimensional Module
Types
| Type | Description |
Functions and values
| Function or value | Description |
Full Usage:
pad data borderpadding paddingMethod
Parameters:
^a[,]
-
A two dimensional array
borderpadding : int
-
The number of points to add to each side
paddingMethod : Padding3DMethod
-
The padding method to use
Returns: float[,]
A two dimensional array, containing the data of the original array padded with artificial data points on each side.
Modifiers: inline Type parameters: ^a |
Example
val data2D: float array2d
val rnd: System.Random
namespace System
Multiple items
type Random = new: unit -> unit + 1 overload member GetItems<'T> : choices: ReadOnlySpan<'T> * length: int -> 'T array + 2 overloads member Next: unit -> int + 2 overloads member NextBytes: buffer: byte array -> unit + 1 overload member NextDouble: unit -> float member NextInt64: unit -> int64 + 2 overloads member NextSingle: unit -> float32 member Shuffle<'T> : values: Span<'T> -> unit + 1 overload static member Shared: Random <summary>Represents a pseudo-random number generator, which is an algorithm that produces a sequence of numbers that meet certain statistical requirements for randomness.</summary> -------------------- System.Random() : System.Random System.Random(Seed: int) : System.Random module Array2D
from Microsoft.FSharp.Collections
val init: length1: int -> length2: int -> initializer: (int -> int -> 'T) -> 'T array2d
val i: int
val j: int
System.Random.NextDouble() : float
val padding: int
val paddedData2D: obj
|
FSharp.Stats