mirror of
https://github.com/nushell/nushell.git
synced 2025-04-29 23:54:26 +02:00
Add basic hyperbolic functions (#7258)
`math sinh` `math cosh` `math tanh`
This commit is contained in:
parent
b27d6b2cb1
commit
4f05994b36
@ -408,6 +408,9 @@ pub fn create_default_context() -> EngineState {
|
|||||||
MathSin,
|
MathSin,
|
||||||
MathCos,
|
MathCos,
|
||||||
MathTan,
|
MathTan,
|
||||||
|
MathSinH,
|
||||||
|
MathCosH,
|
||||||
|
MathTanH,
|
||||||
MathPi,
|
MathPi,
|
||||||
MathEuler,
|
MathEuler,
|
||||||
};
|
};
|
||||||
|
88
crates/nu-command/src/math/cosh.rs
Normal file
88
crates/nu-command/src/math/cosh.rs
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
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 cosh"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> Signature {
|
||||||
|
Signature::build("math cosh")
|
||||||
|
.input_output_types(vec![(Type::Number, Type::Float)])
|
||||||
|
.vectorizes_over_list(true)
|
||||||
|
.category(Category::Math)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Returns the hyperbolic cosine of the number."
|
||||||
|
}
|
||||||
|
|
||||||
|
fn search_terms(&self) -> Vec<&str> {
|
||||||
|
vec!["trigonometry", "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> {
|
||||||
|
let e = std::f64::consts::E;
|
||||||
|
vec![Example {
|
||||||
|
description: "Apply the hyperpolic cosine to 1",
|
||||||
|
example: "1 | math cosh",
|
||||||
|
result: Some(Value::test_float(((e * e) + 1.0) / (2.0 * e))),
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
Value::Float {
|
||||||
|
val: val.cosh(),
|
||||||
|
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 {})
|
||||||
|
}
|
||||||
|
}
|
@ -2,6 +2,7 @@ mod abs;
|
|||||||
mod avg;
|
mod avg;
|
||||||
mod ceil;
|
mod ceil;
|
||||||
mod cos;
|
mod cos;
|
||||||
|
mod cosh;
|
||||||
mod euler;
|
mod euler;
|
||||||
mod eval;
|
mod eval;
|
||||||
mod floor;
|
mod floor;
|
||||||
@ -15,10 +16,12 @@ mod product;
|
|||||||
mod reducers;
|
mod reducers;
|
||||||
mod round;
|
mod round;
|
||||||
mod sin;
|
mod sin;
|
||||||
|
mod sinh;
|
||||||
mod sqrt;
|
mod sqrt;
|
||||||
mod stddev;
|
mod stddev;
|
||||||
mod sum;
|
mod sum;
|
||||||
mod tan;
|
mod tan;
|
||||||
|
mod tanh;
|
||||||
mod utils;
|
mod utils;
|
||||||
mod variance;
|
mod variance;
|
||||||
|
|
||||||
@ -40,8 +43,11 @@ pub use sum::SubCommand as MathSum;
|
|||||||
pub use variance::SubCommand as MathVariance;
|
pub use variance::SubCommand as MathVariance;
|
||||||
|
|
||||||
pub use cos::SubCommand as MathCos;
|
pub use cos::SubCommand as MathCos;
|
||||||
|
pub use cosh::SubCommand as MathCosH;
|
||||||
pub use sin::SubCommand as MathSin;
|
pub use sin::SubCommand as MathSin;
|
||||||
|
pub use sinh::SubCommand as MathSinH;
|
||||||
pub use tan::SubCommand as MathTan;
|
pub use tan::SubCommand as MathTan;
|
||||||
|
pub use tanh::SubCommand as MathTanH;
|
||||||
|
|
||||||
pub use euler::SubCommand as MathEuler;
|
pub use euler::SubCommand as MathEuler;
|
||||||
pub use pi::SubCommand as MathPi;
|
pub use pi::SubCommand as MathPi;
|
||||||
|
88
crates/nu-command/src/math/sinh.rs
Normal file
88
crates/nu-command/src/math/sinh.rs
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
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 sinh"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> Signature {
|
||||||
|
Signature::build("math sinh")
|
||||||
|
.input_output_types(vec![(Type::Number, Type::Float)])
|
||||||
|
.vectorizes_over_list(true)
|
||||||
|
.category(Category::Math)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Returns the hyperbolic sine of the number."
|
||||||
|
}
|
||||||
|
|
||||||
|
fn search_terms(&self) -> Vec<&str> {
|
||||||
|
vec!["trigonometry", "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> {
|
||||||
|
let e = std::f64::consts::E;
|
||||||
|
vec![Example {
|
||||||
|
description: "Apply the hyperpolic sine to 1",
|
||||||
|
example: "1 | math sinh",
|
||||||
|
result: Some(Value::test_float((e * e - 1.0) / (2.0 * e))),
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
Value::Float {
|
||||||
|
val: val.sinh(),
|
||||||
|
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 {})
|
||||||
|
}
|
||||||
|
}
|
87
crates/nu-command/src/math/tanh.rs
Normal file
87
crates/nu-command/src/math/tanh.rs
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
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 tanh"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> Signature {
|
||||||
|
Signature::build("math tanh")
|
||||||
|
.input_output_types(vec![(Type::Number, Type::Float)])
|
||||||
|
.vectorizes_over_list(true)
|
||||||
|
.category(Category::Math)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Returns the hyperbolic tangent of the number."
|
||||||
|
}
|
||||||
|
|
||||||
|
fn search_terms(&self) -> Vec<&str> {
|
||||||
|
vec!["trigonometry", "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: "Apply the hyperpolic tangent to 10*pi",
|
||||||
|
example: "(math pi) * 10 | math tanh",
|
||||||
|
result: Some(Value::test_float(1f64)),
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
Value::Float {
|
||||||
|
val: val.tanh(),
|
||||||
|
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 {})
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user