#!perl
my
$min_math_complex_ver
= 1.57;
eval
"use Math::Complex $min_math_complex_ver"
;
plan
skip_all
=>
"Math::Complex $min_math_complex_ver required"
if
$@;
plan
tests
=> 8;
{
my
$x
= Math::Matrix::Complex -> new([[1, 2],
[4, 5]]);
my
$y
= Math::Matrix::Complex -> new([[3],
[6]]);
my
$z
=
$x
-> concat(
$y
);
is(
ref
(
$z
),
'Math::Matrix::Complex'
,
'$z is a Math::Matrix::Complex'
);
is_deeply([
@$z
], [[1, 2, 3],
[4, 5, 6]],
'$z has the right values'
);
my
(
$nrowz
,
$ncolz
) =
$z
-> size();
for
my
$i
(0 ..
$nrowz
- 1) {
for
my
$j
(0 ..
$ncolz
- 1) {
$z
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[1, 2],
[4, 5]],
'$x is unmodified'
);
is_deeply([
@$y
], [[3],
[6]],
'$y is unmodified'
);
}
{
my
$x
= Math::Matrix::Complex -> new([[0, 1, 2],
[5, 6, 7]]);
my
$y
= Math::Matrix::Complex -> new([[3, 4],
[8, 9]]);
my
$z
=
$x
-> concat(
$y
);
is(
ref
(
$z
),
'Math::Matrix::Complex'
,
'$z is a Math::Matrix::Complex'
);
is_deeply([
@$z
], [[0, 1, 2, 3, 4],
[5, 6, 7, 8, 9]],
'$z has the right values'
);
my
(
$nrowz
,
$ncolz
) =
$z
-> size();
for
my
$i
(0 ..
$nrowz
- 1) {
for
my
$j
(0 ..
$ncolz
- 1) {
$z
-> [
$i
][
$j
] += 100;
}
}
is_deeply([
@$x
], [[0, 1, 2],
[5, 6, 7]],
'$x is unmodified'
);
is_deeply([
@$y
], [[3, 4],
[8, 9]],
'$y is unmodified'
);
}