#!perl
note(
"madd() with two matrices"
);
{
my
$x
= Math::Matrix -> new([[ 1, 2, 3],
[ 4, 5, 6]]);
my
$y
= Math::Matrix -> new([[ 7, 8, 9],
[10, 11, 12]]);
my
$z
=
$x
-> madd(
$y
);
is(
ref
(
$z
),
'Math::Matrix'
,
'$z is a Math::Matrix'
);
is_deeply([
@$z
], [[ 8, 10, 12],
[14, 16, 18]],
'$z has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$z
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 1, 2, 3],
[ 4, 5, 6]],
'$x is unmodified'
);
is_deeply([
@$y
], [[ 7, 8, 9],
[10, 11, 12]],
'$y is unmodified'
);
}
note(
"madd() with empty matrices"
);
{
my
$x
= Math::Matrix -> new([]);
my
$y
= Math::Matrix -> new([]);
my
$z
=
$x
-> madd(
$y
);
is(
ref
(
$z
),
'Math::Matrix'
,
'$z is a Math::Matrix'
);
is_deeply([
@$z
], [],
'$z has the right values'
);
}