|
VectorSampleT Method (T, Int32)
|
Draws a random sample from a group of observations, without repetitions.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static T[] Sample<T>(
this T[] values,
int size
)
<ExtensionAttribute>
Public Shared Function Sample(Of T) (
values As T(),
size As Integer
) As T()
Request Example
View SourceParameters
- values
- Type: T
The observation vector. - size
- Type: SystemInt32
The size of the sample to be drawn (how many samples to get).
Type Parameters
- T
- The type of the observations.
Return Value
Type:
TA vector containing the samples drawn from
values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also