final Array a = mA.mul(aD);
if (a.size() != mA.rows()) {
fail("'mul' failed");
}
final int offset = a.flags().contains(Address.Flags.FORTRAN) ? 1 : 0;
for (int col=offset; col<a.cols()+offset; col++) {
if (a.get(col) != 10.0) {
fail("'mul' failed");
}
}