VStack() public static method

Stacks.
public static VStack ( ) : Matrix
return Matrix
Example #1
0
 /// <summary>A Matrix extension method that stacks.</summary>
 /// <param name="m">Matrix.</param>
 /// <param name="t">Row or Column sum.</param>
 /// <returns>A Matrix.</returns>
 public static Matrix VStack(this Matrix m, Matrix t)
 {
     return(Matrix.VStack(m, t));
 }