mulVector method

Vector<T> mulVector(
  1. Vector<T> other, {
  2. DataType<T>? dataType,
})

Returns a view of this Matrix multiplied with other.

Implementation

Vector<T> mulVector(Vector<T> other, {DataType<T>? dataType}) =>
    MatrixVectorMultiplicationVector<T>(
        dataType ?? this.dataType, this, other);