You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,11 +80,11 @@ then increment/decrement operators are used with linear complexity (and linear c
80
80
The Padua transform and its inverse are implemented thanks to [Michael Clarke](https://github.com/MikeAClarke). These are optimized methods designed for computing the bivariate Chebyshev coefficients by interpolating a bivariate function at the Padua points on `[-1,1]^2`.
81
81
82
82
```julia
83
-
julia> n=200;
83
+
julia> n=200;
84
84
85
-
julia> N=div((n+1)*(n+2),2)
85
+
julia> N=div((n+1)*(n+2),2);
86
86
87
-
julia> v=rand(N); #Length of v is the no. of Padua points
87
+
julia> v=rand(N); # The length of v is the number of Padua points
0 commit comments