mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
16 lines
248 B
JavaScript
16 lines
248 B
JavaScript
module.exports = {
|
|
'name': 'asech',
|
|
'category': 'Trigonometry',
|
|
'syntax': [
|
|
'asech(x)'
|
|
],
|
|
'description': 'Calculate the inverse secant of a value.',
|
|
'examples': [
|
|
'asech(0.5)'
|
|
],
|
|
'seealso': [
|
|
'acsch',
|
|
'acoth'
|
|
]
|
|
};
|