numl.Math.LinearAlgebra.Matrix.VStack C# (CSharp) Метод

VStack() публичный статический Метод

Stacks.
public static VStack ( ) : Matrix
Результат Matrix
        public static Matrix VStack(params Vector[] vectors)
        {
            return Stack(VectorType.Col, vectors);
        }

Same methods

Matrix::VStack ( Matrix m, Matrix t ) : Matrix

Usage 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));
 }