Skip to content

Commit c2821a7

Browse files
committed
Insert to bib file and update reference
1 parent bf1b9ce commit c2821a7

3 files changed

Lines changed: 20 additions & 2 deletions

File tree

docs/references/bib.bib

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -897,6 +897,22 @@ @article{stein:1967
897897
year = {1967},
898898
}
899899

900+
@article{lentz:1976,
901+
abstract = {A new method of generating the Bessel functions and ratios of Bessel functions necessary for Mie calculations is presented. Accuracy is improved while eliminating the need for extended precision word lengths or large storage capability. The algorithm uses a new technique of evaluating continued fractions that starts at the beginning rather than the tail and has a built-in error check. The continued fraction representations for both spherical Bessel functions and ratios of Bessel functions of consecutive order are presented.},
902+
author = {William J. Lentz},
903+
doi = {10.1364/AO.15.000668},
904+
isbn = {0003-6935},
905+
issn = {0003-6935},
906+
journal = {Applied Optics},
907+
keywords = {bessel, continued fraction},
908+
number = {3},
909+
pages = {668--671},
910+
pmid = {20165036},
911+
title = {{Generating bessel functions in Mie scattering calculations using continued fractions}},
912+
volume = {15},
913+
year = {1976},
914+
}
915+
900916
@mastersthesis{steinarsson:2013,
901917
abstract = {As human beings, we often wish to visualize certain information in order to make better sense of it. This can be a somewhat challenging enterprise for large amounts of data and might require downsampling the data, retaining only the important visual characteristics. The focus of this thesis is to explore methods for downsampling data which can be visualized in the form of a line chart, for example, time series. Several algorithms are put forth in the thesis and their features are discussed. Also, an online survey was conducted where participants were asked to compare downsampled line charts against a non-downsampled chart. Some of the algorithms are based on a well-known technique in cartography which involves forming triangles between adjacent data points and using the area of the triangles to determine the perceptual importance of the individual points. According to the survey, algorithms based on a triangle area approach consistently proved to be effective, and one in particular when efficiency is also taken into account.},
902918
author = {Svein Steinarsson},

lib/node_modules/@stdlib/math/base/tools/continued-fraction/lib/basic.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ function continuedFractionB( gen, factor, maxIter ) {
123123
* Evaluates the continued fraction approximation for the supplied series generator using the modified Lentz algorithm.
124124
*
125125
* #### References
126-
* * Lentz, W.J. 1976, Applied Optics, vol. 15, pp. 668-671.
126+
*
127+
* * Lentz, William J. 1976. "Generating bessel functions in Mie scattering calculations using continued fractions." *Applied Optics* 15 (3): 668–71. doi:[10.1364/AO.15.000668](https://doi.org/10.1364/AO.15.000668).
127128
*
128129
* @param {Function} generator - function returning terms of continued fraction expansion
129130
* @param {Object} [options] - function options

lib/node_modules/@stdlib/math/base/tools/continued-fraction/lib/generators.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,8 @@ function continuedFractionB( gen, factor, maxIter ) {
157157
* Evaluates the continued fraction approximation for the supplied series generator using the modified Lentz algorithm.
158158
*
159159
* #### References
160-
* * Lentz, W.J. 1976, Applied Optics, vol. 15, pp. 668-671.
160+
*
161+
* * Lentz, William J. 1976. "Generating bessel functions in Mie scattering calculations using continued fractions." *Applied Optics* 15 (3): 668–71. doi:[10.1364/AO.15.000668](https://doi.org/10.1364/AO.15.000668).
161162
*
162163
* @param {Function} generator - function returning terms of continued fraction expansion
163164
* @param {Object} [options] - function options

0 commit comments

Comments
 (0)