Sign in
third-party-mirror
/
eigen
/
2571273647cdf6673639ebe9b3aa3237c1e7a822
/
.
/
doc
/
snippets
/
Cwise_array_atan2_array.cpp
blob: 5742f9ae6aa04e269a1bc39ee039123b843dfcfa [
file
] [
log
] [
blame
]
Array
<
double
,
1
,
3
>
x
(
8
,
-
25
,
3
),
y
(
1.
/
3.
,
0.5
,
-
2.
);
cout
<<
"atan2(["
<<
x
<<
"], ["
<<
y
<<
"]) = "
<<
x
.
atan2
(
y
)
<<
endl
;
// using ArrayBase::pow
cout
<<
"atan2(["
<<
x
<<
"], ["
<<
y
<<
"] = "
<<
atan2
(
x
,
y
)
<<
endl
;
// using Eigen::pow