QLNet.Matrix.Matrix C# (CSharp) Метод

Matrix() публичный Метод

public Matrix ( Matrix from ) : System
from Matrix
Результат System
        public Matrix(Matrix from)
        {
            data_ = !from.empty() ? (double[])from.data_.Clone() : null;
            rows_ = from.rows_;
            columns_ = from.columns_;
        }

Same methods

Matrix::Matrix ( int rows, int columns ) : System
Matrix::Matrix ( int rows, int columns, double value ) : System