EntityFunctions.StandardDeviationP Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft die kanonische StDevP Funktion auf, die die statistische Standardabweichung für eine Grundpopulation zurückgibt. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
Überlädt
| Name | Beschreibung |
|---|---|
| StandardDeviationP(IEnumerable<Nullable<Int32>>) |
Ruft die kanonische |
| StandardDeviationP(IEnumerable<Nullable<Int64>>) |
Ruft die kanonische |
| StandardDeviationP(IEnumerable<Nullable<Double>>) |
Ruft die kanonische |
| StandardDeviationP(IEnumerable<Nullable<Decimal>>) |
Ruft die kanonische |
| StandardDeviationP(IEnumerable<Int32>) |
Ruft die kanonische |
| StandardDeviationP(IEnumerable<Double>) |
Ruft die kanonische |
| StandardDeviationP(IEnumerable<Decimal>) |
Ruft die kanonische |
| StandardDeviationP(IEnumerable<Int64>) |
Ruft die kanonische |
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.
StandardDeviationP(IEnumerable<Nullable<Int32>>)
Ruft die kanonische StDevP Funktion auf. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<Nullable<int>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP(System.Collections.Generic.IEnumerable<int?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<Nullable<int>> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Nullable(Of Integer))) As Nullable(Of Double)
Parameter
- collection
- IEnumerable<Nullable<Int32>>
Eine Reihe numerischer Werte.
Gibt zurück
Die statistische Standardabweichung der Population in der Eingabeauflistung.
- Attribute
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.
Gilt für:
StandardDeviationP(IEnumerable<Nullable<Int64>>)
Ruft die kanonische StDevP Funktion auf. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<Nullable<long>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP(System.Collections.Generic.IEnumerable<long?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<Nullable<int64>> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Nullable(Of Long))) As Nullable(Of Double)
Parameter
- collection
- IEnumerable<Nullable<Int64>>
Eine Reihe numerischer Werte.
Gibt zurück
Die statistische Standardabweichung der Population in der Eingabeauflistung.
- Attribute
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.
Gilt für:
StandardDeviationP(IEnumerable<Nullable<Double>>)
Ruft die kanonische StDevP Funktion auf. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<Nullable<double>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP(System.Collections.Generic.IEnumerable<double?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<Nullable<double>> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Nullable(Of Double))) As Nullable(Of Double)
Parameter
- collection
- IEnumerable<Nullable<Double>>
Eine Reihe numerischer Werte.
Gibt zurück
Die statistische Standardabweichung der Population in der Eingabeauflistung.
- Attribute
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.
Gilt für:
StandardDeviationP(IEnumerable<Nullable<Decimal>>)
Ruft die kanonische StDevP Funktion auf. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<Nullable<System::Decimal>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP(System.Collections.Generic.IEnumerable<decimal?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<Nullable<decimal>> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Nullable(Of Decimal))) As Nullable(Of Double)
Parameter
- collection
- IEnumerable<Nullable<Decimal>>
Eine Reihe numerischer Werte.
Gibt zurück
Die statistische Standardabweichung der Population in der Eingabeauflistung.
- Attribute
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.
Gilt für:
StandardDeviationP(IEnumerable<Int32>)
Ruft die kanonische StDevP Funktion auf. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<int> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP(System.Collections.Generic.IEnumerable<int> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<int> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Integer)) As Nullable(Of Double)
Parameter
- collection
- IEnumerable<Int32>
Eine Reihe numerischer Werte.
Gibt zurück
Die statistische Standardabweichung der Population in der Eingabeauflistung.
- Attribute
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.
Gilt für:
StandardDeviationP(IEnumerable<Double>)
Ruft die kanonische StDevP Funktion auf. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<double> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP(System.Collections.Generic.IEnumerable<double> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<double> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Double)) As Nullable(Of Double)
Parameter
- collection
- IEnumerable<Double>
Eine Reihe numerischer Werte.
Gibt zurück
Die statistische Standardabweichung der Population in der Eingabeauflistung.
- Attribute
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.
Gilt für:
StandardDeviationP(IEnumerable<Decimal>)
Ruft die kanonische StDevP Funktion auf. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<System::Decimal> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP(System.Collections.Generic.IEnumerable<decimal> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<decimal> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Decimal)) As Nullable(Of Double)
Parameter
- collection
- IEnumerable<Decimal>
Eine Reihe numerischer Werte.
Gibt zurück
Die statistische Standardabweichung der Population in der Eingabeauflistung.
- Attribute
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.
Gilt für:
StandardDeviationP(IEnumerable<Int64>)
Ruft die kanonische StDevP Funktion auf. Informationen zur kanonischen StDevP Funktion finden Sie unter kanonische Funktionen.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<long> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP(System.Collections.Generic.IEnumerable<long> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<int64> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Long)) As Nullable(Of Double)
Parameter
- collection
- IEnumerable<Int64>
Eine Reihe numerischer Werte.
Gibt zurück
Die statistische Standardabweichung der Population in der Eingabeauflistung.
- Attribute
Hinweise
Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.