Skip to content

Commit deb633b

Browse files
committed
System.Numerics.Tensors*
1 parent 3106933 commit deb633b

File tree

2 files changed

+412
-459
lines changed

2 files changed

+412
-459
lines changed

xml/System.Numerics.Tensors/Tensor.xml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3908,8 +3908,8 @@
39083908
</Parameters>
39093909
<Docs>
39103910
<typeparam name="T">To be added.</typeparam>
3911-
<param name="dimension">The axis along which the tensors will be joined. If axis is -1, arrays are flattened before use. Default is 0.</param>
39123911
<param name="tensors">The tensors must have the same shape, except in the dimension corresponding to axis (the first, by default).</param>
3912+
<param name="dimension">The axis along which the tensors will be joined. If axis is -1, arrays are flattened before use. Default is 0.</param>
39133913
<summary>
39143914
Join a sequence of tensors along an existing axis.
39153915
</summary>
@@ -3974,8 +3974,8 @@
39743974
</Parameters>
39753975
<Docs>
39763976
<typeparam name="T">To be added.</typeparam>
3977-
<param name="dimension">The axis along which the tensors will be joined. If axis is -1, arrays are flattened before use. Default is 0.</param>
39783977
<param name="tensors">The tensors must have the same shape, except in the dimension corresponding to axis (the first, by default).</param>
3978+
<param name="dimension">The axis along which the tensors will be joined. If axis is -1, arrays are flattened before use. Default is 0.</param>
39793979
<param name="destination" />
39803980
<summary>
39813981
Join a sequence of tensors along an existing axis.
@@ -5214,10 +5214,11 @@
52145214
This method effectively computes <c><typeparamref name="T" />.CosPi(<paramref name="x" />[i])</c>.
52155215
</para>
52165216
<para>
5217-
The angles in x must be in radians. Use <see cref="M:System.Single.DegreesToRadians(System.Single)" /> or multiply by <typeparamref name="T" />.Pi/180 to convert degrees to radians.
5217+
The angles in x must be in radians. Use <see cref="M:System.Single.DegreesToRadians" /> or multiply by <typeparamref name="T" />.Pi/180 to convert degrees to radians.
52185218
</para>
52195219
<para>
5220-
This method might call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different operating systems or architectures.
5220+
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
5221+
operating systems or architectures.
52215222
</para>
52225223
</remarks>
52235224
</Docs>
@@ -5295,7 +5296,7 @@
52955296
This method effectively computes <c><typeparamref name="T" />.CosPi(<paramref name="x" />[i])</c>.
52965297
</para>
52975298
<para>
5298-
The angles in x must be in radians. Use <see cref="M:System.Single.DegreesToRadians(System.Single)" /> or multiply by <typeparamref name="T" />.Pi/180 to convert degrees to radians.
5299+
The angles in x must be in radians. Use <see cref="M:System.Single.DegreesToRadians" /> or multiply by <typeparamref name="T" />.Pi/180 to convert degrees to radians.
52995300
</para>
53005301
<para>
53015302
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -9177,8 +9178,8 @@
91779178
</Parameters>
91789179
<Docs>
91799180
<typeparam name="T">To be added.</typeparam>
9180-
<param name="x">Value to compare against.</param>
91819181
<param name="y">First <see cref="T:System.Numerics.Tensors.ReadOnlyTensorSpan`1" /> to compare.</param>
9182+
<param name="x">Value to compare against.</param>
91829183
<summary>
91839184
Compares the elements of two <see cref="T:System.Numerics.Tensors.ReadOnlyTensorSpan`1" /> to see if any elements of <paramref name="y" /> are greater than <paramref name="x" />.
91849185
If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared.
@@ -9964,8 +9965,8 @@
99649965
</Parameters>
99659966
<Docs>
99669967
<typeparam name="T">To be added.</typeparam>
9967-
<param name="x">Value to compare against.</param>
99689968
<param name="y">First <see cref="T:System.Numerics.Tensors.ReadOnlyTensorSpan`1" /> to compare.</param>
9969+
<param name="x">Value to compare against.</param>
99699970
<summary>
99709971
Compares the elements of two <see cref="T:System.Numerics.Tensors.ReadOnlyTensorSpan`1" /> to see if any elements of <paramref name="y" /> are greater than <paramref name="x" />.
99719972
If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared.
@@ -11577,8 +11578,8 @@
1157711578
</Parameters>
1157811579
<Docs>
1157911580
<typeparam name="T">To be added.</typeparam>
11580-
<param name="x">Second value to compare against.</param>
1158111581
<param name="y">First value to compare.</param>
11582+
<param name="x">Second value to compare against.</param>
1158211583
<summary>
1158311584
Compares the elements of two <see cref="T:System.Numerics.Tensors.ReadOnlyTensorSpan`1" /> to see if all elements of <paramref name="y" /> are less than <paramref name="x" />.
1158411585
If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared.
@@ -12364,8 +12365,8 @@
1236412365
</Parameters>
1236512366
<Docs>
1236612367
<typeparam name="T">To be added.</typeparam>
12367-
<param name="x">Second value to compare against.</param>
1236812368
<param name="y">First value to compare.</param>
12369+
<param name="x">Second value to compare against.</param>
1236912370
<summary>
1237012371
Compares the elements of two <see cref="T:System.Numerics.Tensors.ReadOnlyTensorSpan`1" /> to see if all elements of <paramref name="y" /> are less than <paramref name="x" />.
1237112372
If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared.
@@ -18555,8 +18556,8 @@
1855518556
<Docs>
1855618557
<typeparam name="T">To be added.</typeparam>
1855718558
<param name="x">The tensor, represented as a span.</param>
18558-
<param name="n">The degree of the root to be computed, represented as a scalar.</param>
1855918559
<param name="destination">The destination tensor, represented as a span.</param>
18560+
<param name="n">The degree of the root to be computed, represented as a scalar.</param>
1856018561
<summary>Computes the element-wise n-th root of the values in the specified tensor.</summary>
1856118562
<returns>To be added.</returns>
1856218563
<remarks>To be added.</remarks>
@@ -20842,8 +20843,8 @@
2084220843
</Parameters>
2084320844
<Docs>
2084420845
<typeparam name="T">To be added.</typeparam>
20845-
<param name="dimension">Index of where the new dimension will be.</param>
2084620846
<param name="tensors">Input <see cref="T:System.Numerics.Tensors.Tensor`1" />.</param>
20847+
<param name="dimension">Index of where the new dimension will be.</param>
2084720848
<summary>
2084820849
Join multiple <see cref="T:System.Numerics.Tensors.Tensor`1" /> along a new dimension. The axis parameter specifies the index of the new dimension. All tensors must have the same shape.
2084920850
</summary>

0 commit comments

Comments
 (0)