#!perl
note(
'median() on a 4-by-5 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3, -1, 5, 2, 8 ],
[ 4, 0, 2, -3, 1 ],
[ 2, 6, -5, 1, -2 ],
[ 0, -3, 4, 2, 3 ]]);
my
$y
=
$x
-> median();
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 2.5, -0.5, 3, 1.5, 2 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3, -1, 5, 2, 8 ],
[ 4, 0, 2, -3, 1 ],
[ 2, 6, -5, 1, -2 ],
[ 0, -3, 4, 2, 3 ]],
'$x is unmodified'
);
}
note(
'median(1) on a 4-by-5 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3, -1, 5, 2, 8 ],
[ 4, 0, 2, -3, 1 ],
[ 2, 6, -5, 1, -2 ],
[ 0, -3, 4, 2, 3 ]]);
my
$y
=
$x
-> median(1);
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 2.5, -0.5, 3, 1.5, 2 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3, -1, 5, 2, 8 ],
[ 4, 0, 2, -3, 1 ],
[ 2, 6, -5, 1, -2 ],
[ 0, -3, 4, 2, 3 ]],
'$x is unmodified'
);
}
note(
'median(2) on a 4-by-5 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3, -1, 5, 2, 8 ],
[ 4, 0, 2, -3, 1 ],
[ 2, 6, -5, 1, -2 ],
[ 0, -3, 4, 2, 3 ]]);
my
$y
=
$x
-> median(2);
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 3 ],
[ 1 ],
[ 1 ],
[ 2 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3, -1, 5, 2, 8 ],
[ 4, 0, 2, -3, 1 ],
[ 2, 6, -5, 1, -2 ],
[ 0, -3, 4, 2, 3 ]],
'$x is unmodified'
);
}
note(
'median() on a 4-by-1 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3 ],
[ 4 ],
[ 2 ],
[ 0 ]]);
my
$y
=
$x
-> median();
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 2.5 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3 ],
[ 4 ],
[ 2 ],
[ 0 ]],
'$x is unmodified'
);
}
note(
'median(1) on a 4-by-1 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3 ],
[ 4 ],
[ 2 ],
[ 0 ]]);
my
$y
=
$x
-> median(1);
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 2.5 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3 ],
[ 4 ],
[ 2 ],
[ 0 ]],
'$x is unmodified'
);
}
note(
'median(2) on a 4-by-1 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3 ],
[ 4 ],
[ 2 ],
[ 0 ]]);
my
$y
=
$x
-> median(2);
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 3 ],
[ 4 ],
[ 2 ],
[ 0 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3 ],
[ 4 ],
[ 2 ],
[ 0 ]],
'$x is unmodified'
);
}
note(
'median() on a 1-by-5 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3, -1, 5, 2, 8 ]]);
my
$y
=
$x
-> median();
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 3 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3, -1, 5, 2, 8 ]],
'$x is unmodified'
);
}
note(
'median(1) on a 1-by-5 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3, -1, 5, 2, 8 ]]);
my
$y
=
$x
-> median(1);
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 3, -1, 5, 2, 8 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3, -1, 5, 2, 8 ]],
'$x is unmodified'
);
}
note(
'median(2) on a 1-by-5 matrix'
);
{
my
$x
= Math::Matrix -> new([[ 3, -1, 5, 2, 8 ]]);
my
$y
=
$x
-> median(2);
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [[ 3 ]],
'$y has the right values'
);
my
(
$nrowy
,
$ncoly
) =
$y
-> size();
for
my
$i
(0 ..
$nrowy
- 1) {
for
my
$j
(0 ..
$ncoly
- 1) {
$y
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[ 3, -1, 5, 2, 8 ]],
'$x is unmodified'
);
}
note(
'median() on an empty matrix'
);
{
my
$x
= Math::Matrix -> new([]);
my
$y
=
$x
-> median();
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [],
'$y has the right values'
);
is_deeply([
@$x
], [],
'$x is unmodified'
);
}
note(
'median(1) on an empty matrix'
);
{
my
$x
= Math::Matrix -> new([]);
my
$y
=
$x
-> median(1);
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [],
'$y has the right values'
);
is_deeply([
@$x
], [],
'$x is unmodified'
);
}
note(
'median(2) on an empty matrix'
);
{
my
$x
= Math::Matrix -> new([]);
my
$y
=
$x
-> median(2);
is(
ref
(
$y
),
'Math::Matrix'
,
'$y is a Math::Matrix'
);
is_deeply([
@$y
], [],
'$y has the right values'
);
is_deeply([
@$x
], [],
'$x is unmodified'
);
}