5 references to Aggregate
System.Numerics.Tensors (5)
System\Numerics\Tensors\netcore\TensorPrimitives.Distance.cs (1)
42
return T.Sqrt(
Aggregate
<T, SubtractSquaredOperator<T>, AddOperator<T>>(x, y));
System\Numerics\Tensors\netcore\TensorPrimitives.Dot.cs (1)
33
Aggregate
<T, MultiplyOperator<T>, AddOperator<T>>(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Product.cs (2)
61
return
Aggregate
<T, SubtractOperator<T>, MultiplyOperator<T>>(x, y);
93
return
Aggregate
<T, AddOperator<T>, MultiplyOperator<T>>(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
86
Aggregate
<float, TSingleBinaryOperator, TSingleAggregationOperator>(x, y);