if (transposeA) {
return viewDice().zMult(y, z, alpha, beta, false);
}
//boolean ignore = (z==null);
if (z == null) {
z = new DenseDoubleMatrix1D(this.rows);
}
if (columns != y.size() || rows > z.size()) {
throw new IllegalArgumentException(
"Incompatible args: " + toStringShort() + ", " + y.toStringShort() + ", " + z.toStringShort());
}