Skip to content

Commit cf18ce5

Browse files
committed
minor change so docs don't call undefined variables...
1 parent 9eba77f commit cf18ce5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Taylor1.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,7 @@ Compute the `k-th` expansion coefficient of $g(a) = e^{-a^2}$ given by
11851185
g_k = -\frac{2}{k} \sum_{j=0}^{k-1} p_{k-j} g_j,
11861186
\end{equation*}
11871187
1188-
with $a$ a `Taylor1` polynomial and $p(x) = a(x) a'(x) $.
1188+
with $a$ a `Taylor1` polynomial and $ p(x) = a(x) a'(x) $.
11891189
11901190
Inputs are the `kcoef`-th coefficient, the already calculated expansion coefficients `kcoefprod` of $p(x)$ and the already calculated expansion coefficients `coeffs` of $g(a)$.
11911191
"""
@@ -1198,7 +1198,6 @@ function gaussHomogCoef{T<:Number}(kcoef::Int,kcoefprod::Vector{T},coeffs::Vecto
11981198
-2*coefhomog / (kcoef)
11991199
end
12001200

1201-
12021201
## erf ##
12031202
doc"""
12041203
erf(a)
@@ -1251,7 +1250,6 @@ function erfHomogCoef{T<:Number}(kcoef::Int,gausscoeffs::Vector{T},primecoeffs::
12511250
coefhomog / (kcoef)
12521251
end
12531252

1254-
12551253
## Differentiating ##
12561254
"""
12571255
derivative(a)

0 commit comments

Comments
 (0)