mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
module.exports = {
|
|
'name': 'erf',
|
|
'category': 'Special',
|
|
'syntax': [
|
|
'erf(x)'
|
|
],
|
|
'description': 'Compute the erf function of a value using a rational Chebyshev approximations for different intervals of x',
|
|
'examples': [
|
|
'erf(0.2)',
|
|
'erf(-0.5)',
|
|
'erf(4)'
|
|
],
|
|
'seealso': []
|
|
};
|