Skip to content

Commit e0df23f

Browse files
remove unnecessary parentheses
1 parent e9b9ab3 commit e0df23f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/disk.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ U[1, 1]*sqrt(π)
5454

5555
# Using an orthonormal basis, the integral of $[f(x,y)]^2$ over the disk is
5656
# approximately the square of the 2-norm of the coefficients:
57-
(norm(U)^2, π/(2*sqrt(2))*log1p(sqrt(2)))
57+
norm(U)^2, π/(2*sqrt(2))*log1p(sqrt(2))
5858

5959
# But there's more! Next, we repeat the experiment using the Dunkl-Xu
6060
# orthonormal polynomials supported on the rectangularized disk.
@@ -101,4 +101,4 @@ U[1, 1]*sqrt(π)
101101

102102
# Using an orthonormal basis, the integral of $[f(x,y)]^2$ over the disk is
103103
# approximately the square of the 2-norm of the coefficients:
104-
(norm(U)^2, π/(2*sqrt(2))*log1p(sqrt(2)))
104+
norm(U)^2, π/(2*sqrt(2))*log1p(sqrt(2))

0 commit comments

Comments
 (0)