Tensor.LessThanOrEqualAll メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
LessThanOrEqualAll<T>(ReadOnlyTensorSpan<T>, T) |
2 つの ReadOnlyTensorSpan<T> の要素を比較して、 |
LessThanOrEqualAll<T>(T, ReadOnlyTensorSpan<T>) |
2 つの ReadOnlyTensorSpan<T> の要素を比較して、 |
LessThanOrEqualAll<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>) |
2 つの ReadOnlyTensorSpan<T> の要素を比較して、 |
LessThanOrEqualAll<T>(ReadOnlyTensorSpan<T>, T)
2 つの ReadOnlyTensorSpan<T> の要素を比較して、f
のすべての要素が x
未満かどうかを確認します。
図形が同じでない場合は、テンソルが比較される前に、最小のブロードキャスト可能なサイズにブロードキャストされます。
f
内のすべての要素が x
未満の場合、値が true である Boolean を返します。
public:
generic <typename T>
where T : System::Numerics::IComparisonOperators<T, T, bool> static bool LessThanOrEqualAll(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % f, T x);
public static bool LessThanOrEqualAll<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> f, T x) where T : System.Numerics.IComparisonOperators<T,T,bool>;
static member LessThanOrEqualAll : ReadOnlyTensorSpan * 'T -> bool (requires 'T :> System.Numerics.IComparisonOperators<'T, 'T, bool>)
Public Function LessThanOrEqualAll(Of T As IComparisonOperators(Of T, T, Boolean)) (ByRef f As ReadOnlyTensorSpan(Of T), x As T) As Boolean
型パラメーター
- T
パラメーター
最初に比較する ReadOnlyTensorSpan<T>。
- x
- T
比較対象の 2 番目の値。
戻り値
f
内のすべての要素が x
未満の場合、値が true である場所を Boolean します。
適用対象
LessThanOrEqualAll<T>(T, ReadOnlyTensorSpan<T>)
2 つの ReadOnlyTensorSpan<T> の要素を比較して、y
のすべての要素が x
未満かどうかを確認します。
図形が同じでない場合は、テンソルが比較される前に、最小のブロードキャスト可能なサイズにブロードキャストされます。
y
内のすべての要素が x
未満の場合、値が true である Boolean を返します。
public:
generic <typename T>
where T : System::Numerics::IComparisonOperators<T, T, bool> static bool LessThanOrEqualAll(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static bool LessThanOrEqualAll<T> (T x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IComparisonOperators<T,T,bool>;
static member LessThanOrEqualAll : 'T * ReadOnlyTensorSpan -> bool (requires 'T :> System.Numerics.IComparisonOperators<'T, 'T, bool>)
Public Function LessThanOrEqualAll(Of T As IComparisonOperators(Of T, T, Boolean)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T)) As Boolean
型パラメーター
- T
パラメーター
- x
- T
比較対象の 2 番目の値。
比較する最初の値。
戻り値
y
内のすべての要素が x
未満の場合、値が true である場所を Boolean します。
適用対象
LessThanOrEqualAll<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)
2 つの ReadOnlyTensorSpan<T> の要素を比較して、x
のすべての要素が y
未満かどうかを確認します。
図形が同じでない場合は、テンソルが比較される前に、最小のブロードキャスト可能なサイズにブロードキャストされます。
x
内のすべての要素が y
未満の場合、値が true である Boolean を返します。
public:
generic <typename T>
where T : System::Numerics::IComparisonOperators<T, T, bool> static bool LessThanOrEqualAll(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static bool LessThanOrEqualAll<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IComparisonOperators<T,T,bool>;
static member LessThanOrEqualAll : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> bool (requires 'T :> System.Numerics.IComparisonOperators<'T, 'T, bool>)
Public Function LessThanOrEqualAll(Of T As IComparisonOperators(Of T, T, Boolean)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Boolean
型パラメーター
- T
パラメーター
最初に比較する ReadOnlyTensorSpan<T>。
比較対象の 2 番目の ReadOnlyTensorSpan<T>。
戻り値
x
内のすべての要素が y
未満の場合、値が true である場所を Boolean します。
適用対象
.NET