You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/NumSharp.Core/Creation/np.hstack.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,8 @@ public static partial class np
10
10
/// <summary>
11
11
/// Stack arrays in sequence horizontally (column wise).
12
12
/// This is equivalent to concatenation along the second axis, except for 1-D arrays where it concatenates along the first axis.Rebuilds arrays divided by hsplit.
13
-
/// This function makes most sense for arrays with up to 3 dimensions.For instance, for pixel-data with a height(first axis), width(second axis), and r/g/b channels(third axis). The functions concatenate, stack and block provide more general stacking and concatenation operations.
13
+
/// This function makes most sense for arrays with up to 3 dimensions.For instance, for pixel-data with a height(first axis), width(second axis),
14
+
/// and r/g/b channels(third axis). The functions concatenate, stack and block provide more general stacking and concatenation operations.
14
15
/// </summary>
15
16
/// <param name="tup">The arrays must have the same shape along all but the second axis, except 1-D arrays which can be any length.</param>
16
17
/// <returns>The array formed by stacking the given arrays.</returns>
Copy file name to clipboardExpand all lines: src/NumSharp.Core/Creation/np.vstack.cs
+10-76Lines changed: 10 additions & 76 deletions
Original file line number
Diff line number
Diff line change
@@ -9,50 +9,6 @@ namespace NumSharp
9
9
{
10
10
publicstaticpartialclassnp
11
11
{
12
-
/// <summary>
13
-
/// Stack arrays in sequence vertically (row wise).<br></br>
14
-
/// This is equivalent to concatenation along the first axis after 1-D arrays of shape(N,) have been reshaped to(1, N). Rebuilds arrays divided by vsplit.
15
-
/// </summary>
16
-
/// <typeparam name="T">The type dtype to return.</typeparam>
17
-
/// <param name="tup">The arrays must have the same shape along all but the first axis. 1-D arrays must have the same length.</param>
18
-
/// <returns>The array formed by stacking the given arrays, will be at least 2-D.</returns>
/// Stack arrays in sequence vertically (row wise).<br></br>
58
14
/// This is equivalent to concatenation along the first axis after 1-D arrays of shape(N,) have been reshaped to(1, N). Rebuilds arrays divided by vsplit.
@@ -63,43 +19,21 @@ public static NDArray vstack<T>(params NDArray[] tup) where T : unmanaged
0 commit comments