Skip to content

Commit 190c43c

Browse files
committed
Moved special functions out of HelpDB, insert some links
1 parent 6af3d5c commit 190c43c

File tree

3 files changed

+103
-138
lines changed

3 files changed

+103
-138
lines changed

base/docs/helpdb/Base.jl

Lines changed: 0 additions & 136 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,6 @@ Print (using [`print`](:func:`print`)) `x` followed by a newline.
160160
"""
161161
println
162162

163-
"""
164-
besselj(nu, x)
165-
166-
Bessel function of the first kind of order `nu`, ``J_\\nu(x)``.
167-
"""
168-
besselj
169-
170163
"""
171164
//(num, den)
172165
@@ -225,13 +218,6 @@ Multiply elements of `A` over the singleton dimensions of `r`, and write results
225218
"""
226219
prod!
227220

228-
"""
229-
airybi(x)
230-
231-
Airy function ``\\operatorname{Bi}(x)``.
232-
"""
233-
airybi
234-
235221
"""
236222
gensym([tag])
237223
@@ -370,13 +356,6 @@ cannot be used with empty collections (see `reduce(op, itr)`).
370356
"""
371357
foldl(op, itr)
372358

373-
"""
374-
airybiprime(x)
375-
376-
Airy function derivative ``\\operatorname{Bi}'(x)``.
377-
"""
378-
airybiprime
379-
380359
"""
381360
Ac_rdiv_B(A, B)
382361
@@ -784,13 +763,6 @@ Get the local machine's host name.
784763
"""
785764
gethostname
786765

787-
"""
788-
hankelh1x(nu, x)
789-
790-
Scaled Bessel function of the third kind of order `nu`, ``H^{(1)}_\\nu(x) e^{-x i}``.
791-
"""
792-
hankelh1x
793-
794766
"""
795767
replace(string, pat, r[, n])
796768
@@ -940,13 +912,6 @@ This would create a 25-by-30000 `BitArray`, linked to the file associated with s
940912
"""
941913
Mmap.mmap(io, ::BitArray, dims = ?, offset = ?)
942914

943-
"""
944-
airyprime(x)
945-
946-
Airy function derivative ``\\operatorname{Ai}'(x)``.
947-
"""
948-
airyprime
949-
950915
"""
951916
bessely0(x)
952917
@@ -977,13 +942,6 @@ Decodes the base64-encoded `string` and returns a `Vector{UInt8}` of the decoded
977942
"""
978943
base64decode
979944

980-
"""
981-
besselkx(nu, x)
982-
983-
Scaled modified Bessel function of the second kind of order `nu`, ``K_\\nu(x) e^x``.
984-
"""
985-
besselkx
986-
987945
"""
988946
oct(n, [pad])
989947
@@ -1259,13 +1217,6 @@ Wrap an expression in a `Task` and add it to the local machine's scheduler queue
12591217
"""
12601218
:@schedule
12611219

1262-
"""
1263-
bessely(nu, x)
1264-
1265-
Bessel function of the second kind of order `nu`, ``Y_\\nu(x)``.
1266-
"""
1267-
bessely
1268-
12691220
"""
12701221
gradient(F, [h])
12711222
@@ -1484,13 +1435,6 @@ be passed, to be returned from the last `produce` call in the producer.
14841435
"""
14851436
consume
14861437

1487-
"""
1488-
hankelh2x(nu, x)
1489-
1490-
Scaled Bessel function of the third kind of order `nu`, ``H^{(2)}_\\nu(x) e^{x i}``.
1491-
"""
1492-
hankelh2x
1493-
14941438
"""
14951439
ndigits(n, b = 10)
14961440
@@ -1764,13 +1708,6 @@ Construct a tuple of the given objects.
17641708
"""
17651709
tuple
17661710

1767-
"""
1768-
besseli(nu, x)
1769-
1770-
Modified Bessel function of the first kind of order `nu`, ``I_\\nu(x)``.
1771-
"""
1772-
besseli
1773-
17741711
"""
17751712
eachmatch(r::Regex, s::AbstractString[, overlap::Bool=false])
17761713
@@ -1892,14 +1829,6 @@ Bitwise and.
18921829
"""
18931830
&
18941831

1895-
"""
1896-
besselyx(nu, x)
1897-
1898-
Scaled Bessel function of the second kind of order `nu`,
1899-
``Y_\\nu(x) e^{- | \\operatorname{Im}(x) |}``.
1900-
"""
1901-
besselyx
1902-
19031832
"""
19041833
eigmax(A)
19051834
@@ -2342,13 +2271,6 @@ to control the precision of the output (e.g. to avoid overflow).
23422271
"""
23432272
cumprod
23442273

2345-
"""
2346-
besseljx(nu, x)
2347-
2348-
Scaled Bessel function of the first kind of order `nu`, ``J_\\nu(x) e^{- | \\operatorname{Im}(x) |}``.
2349-
"""
2350-
besseljx
2351-
23522274
"""
23532275
print(x)
23542276
@@ -2752,13 +2674,6 @@ Create all directories in the given `path`, with permissions `mode`. `mode` defa
27522674
"""
27532675
mkpath
27542676

2755-
"""
2756-
besselix(nu, x)
2757-
2758-
Scaled modified Bessel function of the first kind of order `nu`, ``I_\\nu(x) e^{- | \\operatorname{Re}(x) |}``.
2759-
"""
2760-
besselix
2761-
27622677
"""
27632678
union(s1,s2...)
27642679
∪(s1,s2...)
@@ -3923,13 +3838,6 @@ Bitwise not.
39233838
"""
39243839
~
39253840

3926-
"""
3927-
hankelh1(nu, x)
3928-
3929-
Bessel function of the third kind of order `nu`, ``H^{(1)}_\\nu(x)``.
3930-
"""
3931-
hankelh1
3932-
39333841
"""
39343842
rem(x, y)
39353843
%(x, y)
@@ -4390,13 +4298,6 @@ Get a module's enclosing `Module`. `Main` is its own parent, as is `LastMain` af
43904298
"""
43914299
module_parent
43924300

4393-
"""
4394-
airyaiprime(x)
4395-
4396-
Airy function derivative ``\\operatorname{Ai}'(x)``.
4397-
"""
4398-
airyaiprime
4399-
44004301
"""
44014302
prepend!(collection, items) -> collection
44024303
@@ -5193,13 +5094,6 @@ called in last in first out (LIFO) order and run before object finalizers.
51935094
"""
51945095
atexit
51955096

5196-
"""
5197-
besselk(nu, x)
5198-
5199-
Modified Bessel function of the second kind of order `nu`, ``K_\\nu(x)``.
5200-
"""
5201-
besselk
5202-
52035097
"""
52045098
readchomp(x)
52055099
@@ -5830,13 +5724,6 @@ general.
58305724
"""
58315725
setdiff
58325726

5833-
"""
5834-
airyai(x)
5835-
5836-
Airy function ``\\operatorname{Ai}(x)``.
5837-
"""
5838-
airyai
5839-
58405727
"""
58415728
error(message::AbstractString)
58425729
@@ -6282,13 +6169,6 @@ julia> leading_zeros(Int32(1))
62826169
"""
62836170
leading_zeros
62846171

6285-
"""
6286-
hankelh2(nu, x)
6287-
6288-
Bessel function of the third kind of order `nu`, ``H^{(2)}_\\nu(x)``.
6289-
"""
6290-
hankelh2
6291-
62926172
"""
62936173
lexcmp(x, y)
62946174
@@ -6966,13 +6846,6 @@ characters, tests whether the last character of `string` belongs to that set.
69666846
"""
69676847
endswith
69686848

6969-
"""
6970-
airy(k,x)
6971-
6972-
The `k`th derivative of the Airy function ``\\operatorname{Ai}(x)``.
6973-
"""
6974-
airy
6975-
69766849
"""
69776850
!(x)
69786851
@@ -7377,15 +7250,6 @@ Get the backtrace of the current exception, for use within `catch` blocks.
73777250
"""
73787251
catch_backtrace
73797252

7380-
"""
7381-
airyx(k,x)
7382-
7383-
scaled `k`th derivative of the Airy function, return ``\\operatorname{Ai}(x) e^{\\frac{2}{3} x \\sqrt{x}}``
7384-
for `k == 0 || k == 1`, and ``\\operatorname{Ai}(x) e^{- \\left| \\operatorname{Re} \\left( \\frac{2}{3} x \\sqrt{x} \\right) \\right|}``
7385-
for `k == 2 || k == 3`.
7386-
"""
7387-
airyx
7388-
73897253
"""
73907254
get_zero_subnormals() -> Bool
73917255

0 commit comments

Comments
 (0)