mirror of
https://github.com/nushell/nushell.git
synced 2025-03-30 18:46:29 +02:00
Add inverse hyperbolic functions (#7258)
- `math arcsinh` - `math arccosh` - `math arctanh`
This commit is contained in:
parent
aa6c3936d2
commit
4d6ccf2540
crates/nu-command/src
@ -414,6 +414,9 @@ pub fn create_default_context() -> EngineState {
|
|||||||
MathArcSin,
|
MathArcSin,
|
||||||
MathArcCos,
|
MathArcCos,
|
||||||
MathArcTan,
|
MathArcTan,
|
||||||
|
MathArcSinH,
|
||||||
|
MathArcCosH,
|
||||||
|
MathArcTanH,
|
||||||
MathPi,
|
MathPi,
|
||||||
MathEuler,
|
MathEuler,
|
||||||
};
|
};
|
||||||
|
95
crates/nu-command/src/math/arccosh.rs
Normal file
95
crates/nu-command/src/math/arccosh.rs
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
use nu_protocol::ast::Call;
|
||||||
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
||||||
|
use nu_protocol::{Category, Example, PipelineData, ShellError, Signature, Span, Type, Value};
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct SubCommand;
|
||||||
|
|
||||||
|
impl Command for SubCommand {
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"math arccosh"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> Signature {
|
||||||
|
Signature::build("math arccosh")
|
||||||
|
.input_output_types(vec![(Type::Number, Type::Float)])
|
||||||
|
.vectorizes_over_list(true)
|
||||||
|
.category(Category::Math)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Returns the inverse of the hyperbolic cosine function."
|
||||||
|
}
|
||||||
|
|
||||||
|
fn search_terms(&self) -> Vec<&str> {
|
||||||
|
vec!["trigonometry", "inverse", "hyperbolic"]
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run(
|
||||||
|
&self,
|
||||||
|
engine_state: &EngineState,
|
||||||
|
_stack: &mut Stack,
|
||||||
|
call: &Call,
|
||||||
|
input: PipelineData,
|
||||||
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
||||||
|
let head = call.head;
|
||||||
|
input.map(
|
||||||
|
move |value| operate(value, head),
|
||||||
|
engine_state.ctrlc.clone(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn examples(&self) -> Vec<Example> {
|
||||||
|
vec![Example {
|
||||||
|
description: "Get the arccosh of 1",
|
||||||
|
example: "1 | math arccosh",
|
||||||
|
result: Some(Value::test_float(0.0f64)),
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn operate(value: Value, head: Span) -> Value {
|
||||||
|
match value {
|
||||||
|
numeric @ (Value::Int { .. } | Value::Float { .. }) => {
|
||||||
|
let (val, span) = match numeric {
|
||||||
|
Value::Int { val, span } => (val as f64, span),
|
||||||
|
Value::Float { val, span } => (val, span),
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
if (1.0..).contains(&val) {
|
||||||
|
let val = val.acosh();
|
||||||
|
|
||||||
|
Value::Float { val, span }
|
||||||
|
} else {
|
||||||
|
Value::Error {
|
||||||
|
error: ShellError::UnsupportedInput(
|
||||||
|
"'arccosh' undefined for values below 1.".into(),
|
||||||
|
span,
|
||||||
|
),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
other => Value::Error {
|
||||||
|
error: ShellError::UnsupportedInput(
|
||||||
|
format!(
|
||||||
|
"Only numerical values are supported, input type: {:?}",
|
||||||
|
other.get_type()
|
||||||
|
),
|
||||||
|
other.span().unwrap_or(head),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_examples() {
|
||||||
|
use crate::test_examples;
|
||||||
|
|
||||||
|
test_examples(SubCommand {})
|
||||||
|
}
|
||||||
|
}
|
86
crates/nu-command/src/math/arcsinh.rs
Normal file
86
crates/nu-command/src/math/arcsinh.rs
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
use nu_protocol::ast::Call;
|
||||||
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
||||||
|
use nu_protocol::{Category, Example, PipelineData, ShellError, Signature, Span, Type, Value};
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct SubCommand;
|
||||||
|
|
||||||
|
impl Command for SubCommand {
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"math arcsinh"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> Signature {
|
||||||
|
Signature::build("math arcsinh")
|
||||||
|
.input_output_types(vec![(Type::Number, Type::Float)])
|
||||||
|
.vectorizes_over_list(true)
|
||||||
|
.category(Category::Math)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Returns the inverse of the hyperbolic sine function."
|
||||||
|
}
|
||||||
|
|
||||||
|
fn search_terms(&self) -> Vec<&str> {
|
||||||
|
vec!["trigonometry", "inverse", "hyperbolic"]
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run(
|
||||||
|
&self,
|
||||||
|
engine_state: &EngineState,
|
||||||
|
_stack: &mut Stack,
|
||||||
|
call: &Call,
|
||||||
|
input: PipelineData,
|
||||||
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
||||||
|
let head = call.head;
|
||||||
|
input.map(
|
||||||
|
move |value| operate(value, head),
|
||||||
|
engine_state.ctrlc.clone(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn examples(&self) -> Vec<Example> {
|
||||||
|
vec![Example {
|
||||||
|
description: "Get the arcsinh of 0",
|
||||||
|
example: "0 | math arcsinh",
|
||||||
|
result: Some(Value::test_float(0.0f64)),
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn operate(value: Value, head: Span) -> Value {
|
||||||
|
match value {
|
||||||
|
numeric @ (Value::Int { .. } | Value::Float { .. }) => {
|
||||||
|
let (val, span) = match numeric {
|
||||||
|
Value::Int { val, span } => (val as f64, span),
|
||||||
|
Value::Float { val, span } => (val, span),
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let val = val.asinh();
|
||||||
|
|
||||||
|
Value::Float { val, span }
|
||||||
|
}
|
||||||
|
other => Value::Error {
|
||||||
|
error: ShellError::UnsupportedInput(
|
||||||
|
format!(
|
||||||
|
"Only numerical values are supported, input type: {:?}",
|
||||||
|
other.get_type()
|
||||||
|
),
|
||||||
|
other.span().unwrap_or(head),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_examples() {
|
||||||
|
use crate::test_examples;
|
||||||
|
|
||||||
|
test_examples(SubCommand {})
|
||||||
|
}
|
||||||
|
}
|
95
crates/nu-command/src/math/arctanh.rs
Normal file
95
crates/nu-command/src/math/arctanh.rs
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
use nu_protocol::ast::Call;
|
||||||
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
||||||
|
use nu_protocol::{Category, Example, PipelineData, ShellError, Signature, Span, Type, Value};
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct SubCommand;
|
||||||
|
|
||||||
|
impl Command for SubCommand {
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"math arctanh"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> Signature {
|
||||||
|
Signature::build("math arctanh")
|
||||||
|
.input_output_types(vec![(Type::Number, Type::Float)])
|
||||||
|
.vectorizes_over_list(true)
|
||||||
|
.category(Category::Math)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Returns the inverse of the hyperbolic tangent function."
|
||||||
|
}
|
||||||
|
|
||||||
|
fn search_terms(&self) -> Vec<&str> {
|
||||||
|
vec!["trigonometry", "inverse", "hyperbolic"]
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run(
|
||||||
|
&self,
|
||||||
|
engine_state: &EngineState,
|
||||||
|
_stack: &mut Stack,
|
||||||
|
call: &Call,
|
||||||
|
input: PipelineData,
|
||||||
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
||||||
|
let head = call.head;
|
||||||
|
input.map(
|
||||||
|
move |value| operate(value, head),
|
||||||
|
engine_state.ctrlc.clone(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn examples(&self) -> Vec<Example> {
|
||||||
|
vec![Example {
|
||||||
|
description: "Get the arctanh of 1",
|
||||||
|
example: "1 | math arctanh",
|
||||||
|
result: Some(Value::test_float(f64::INFINITY)),
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn operate(value: Value, head: Span) -> Value {
|
||||||
|
match value {
|
||||||
|
numeric @ (Value::Int { .. } | Value::Float { .. }) => {
|
||||||
|
let (val, span) = match numeric {
|
||||||
|
Value::Int { val, span } => (val as f64, span),
|
||||||
|
Value::Float { val, span } => (val, span),
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
if (-1.0..=1.0).contains(&val) {
|
||||||
|
let val = val.atanh();
|
||||||
|
|
||||||
|
Value::Float { val, span }
|
||||||
|
} else {
|
||||||
|
Value::Error {
|
||||||
|
error: ShellError::UnsupportedInput(
|
||||||
|
"'arctanh' undefined for values outside the open interval (-1, 1).".into(),
|
||||||
|
span,
|
||||||
|
),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
other => Value::Error {
|
||||||
|
error: ShellError::UnsupportedInput(
|
||||||
|
format!(
|
||||||
|
"Only numerical values are supported, input type: {:?}",
|
||||||
|
other.get_type()
|
||||||
|
),
|
||||||
|
other.span().unwrap_or(head),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_examples() {
|
||||||
|
use crate::test_examples;
|
||||||
|
|
||||||
|
test_examples(SubCommand {})
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,10 @@
|
|||||||
mod abs;
|
mod abs;
|
||||||
mod arccos;
|
mod arccos;
|
||||||
|
mod arccosh;
|
||||||
mod arcsin;
|
mod arcsin;
|
||||||
|
mod arcsinh;
|
||||||
mod arctan;
|
mod arctan;
|
||||||
|
mod arctanh;
|
||||||
mod avg;
|
mod avg;
|
||||||
mod ceil;
|
mod ceil;
|
||||||
mod cos;
|
mod cos;
|
||||||
@ -55,6 +58,9 @@ pub use tanh::SubCommand as MathTanH;
|
|||||||
pub use arccos::SubCommand as MathArcCos;
|
pub use arccos::SubCommand as MathArcCos;
|
||||||
pub use arccosh::SubCommand as MathArcCosH;
|
pub use arccosh::SubCommand as MathArcCosH;
|
||||||
pub use arcsin::SubCommand as MathArcSin;
|
pub use arcsin::SubCommand as MathArcSin;
|
||||||
|
pub use arcsinh::SubCommand as MathArcSinH;
|
||||||
|
pub use arctan::SubCommand as MathArcTan;
|
||||||
|
pub use arctanh::SubCommand as MathArcTanH;
|
||||||
|
|
||||||
pub use euler::SubCommand as MathEuler;
|
pub use euler::SubCommand as MathEuler;
|
||||||
pub use pi::SubCommand as MathPi;
|
pub use pi::SubCommand as MathPi;
|
||||||
|
Loading…
Reference in New Issue
Block a user