mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-11-07 08:24:33 +01:00
Added vector functions min, max, average
This commit is contained in:
parent
d0d75bbbee
commit
28f87f4708
@ -101,6 +101,21 @@ macro_rules! as_number_or_return {
|
||||
}};
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! as_vector_or_return {
|
||||
($x:expr) => {{
|
||||
if let KalkValue::Vector(values) = $x {
|
||||
if values.len() == 0 {
|
||||
return KalkValue::nan();
|
||||
}
|
||||
|
||||
values
|
||||
} else {
|
||||
return KalkValue::nan();
|
||||
}
|
||||
}};
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! as_number_or_zero {
|
||||
($x:expr) => {{
|
||||
|
@ -73,8 +73,9 @@ lazy_static! {
|
||||
m.insert("atan", (UnaryFuncInfo(atan, InverseTrig), "rad"));
|
||||
m.insert("atanh", (UnaryFuncInfo(atanh, InverseTrig), "rad"));
|
||||
|
||||
m.insert("arg", (UnaryFuncInfo(arg, Other), ""));
|
||||
m.insert("abs", (UnaryFuncInfo(abs, Other), ""));
|
||||
m.insert("arg", (UnaryFuncInfo(arg, Other), ""));
|
||||
m.insert("average", (UnaryFuncInfo(average, Other), ""));
|
||||
m.insert("cbrt", (UnaryFuncInfo(cbrt, Other), ""));
|
||||
m.insert("ceil", (UnaryFuncInfo(ceil, Other), ""));
|
||||
m.insert("iverson", (UnaryFuncInfo(iverson, Other), ""));
|
||||
@ -86,6 +87,8 @@ lazy_static! {
|
||||
m.insert("Γ", (UnaryFuncInfo(gamma, Other), ""));
|
||||
m.insert("log", (UnaryFuncInfo(log, Other), ""));
|
||||
m.insert("ln", (UnaryFuncInfo(ln, Other), ""));
|
||||
m.insert("max", (UnaryFuncInfo(max_vec, Other), ""));
|
||||
m.insert("min", (UnaryFuncInfo(min_vec, Other), ""));
|
||||
m.insert("Re", (UnaryFuncInfo(re, Other), ""));
|
||||
m.insert("round", (UnaryFuncInfo(round, Other), ""));
|
||||
m.insert("sqrt", (UnaryFuncInfo(sqrt, Other), ""));
|
||||
@ -237,7 +240,7 @@ pub mod funcs {
|
||||
use super::special_funcs::factorial;
|
||||
#[cfg(feature = "rug")]
|
||||
pub use super::with_rug::funcs::*;
|
||||
use crate::{as_number_or_return, float, kalk_value::KalkValue};
|
||||
use crate::{as_number_or_return, as_vector_or_return, float, kalk_value::KalkValue};
|
||||
|
||||
pub fn abs(x: KalkValue) -> KalkValue {
|
||||
let (real, imaginary, unit) = as_number_or_return!(x);
|
||||
@ -455,6 +458,21 @@ pub mod funcs {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn average(x: KalkValue) -> KalkValue {
|
||||
let values = as_vector_or_return!(x);
|
||||
let count = values.len() as i64;
|
||||
let mut sum_real = float!(0);
|
||||
let mut sum_imaginary = float!(0);
|
||||
for value in values {
|
||||
let (real, imaginary, _) = as_number_or_return!(value);
|
||||
sum_real += real;
|
||||
sum_imaginary += imaginary;
|
||||
}
|
||||
|
||||
KalkValue::Number(sum_real, sum_imaginary, String::new())
|
||||
.div_without_unit(&KalkValue::from(count))
|
||||
}
|
||||
|
||||
pub fn cbrt(x: KalkValue) -> KalkValue {
|
||||
let (real, _, unit) = as_number_or_return!(x);
|
||||
|
||||
@ -682,6 +700,34 @@ pub mod funcs {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn max_vec(x: KalkValue) -> KalkValue {
|
||||
let values = as_vector_or_return!(x);
|
||||
let mut max = &values[0];
|
||||
for value in &values {
|
||||
if let KalkValue::Boolean(greater) = value.greater_than_without_unit(&max) {
|
||||
if greater {
|
||||
max = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
max.clone()
|
||||
}
|
||||
|
||||
pub fn min_vec(x: KalkValue) -> KalkValue {
|
||||
let values = as_vector_or_return!(x);
|
||||
let mut min = &values[0];
|
||||
for value in &values {
|
||||
if let KalkValue::Boolean(less) = value.less_than_without_unit(&min) {
|
||||
if less {
|
||||
min = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
min.clone()
|
||||
}
|
||||
|
||||
pub fn nth_root(x: KalkValue, n: KalkValue) -> KalkValue {
|
||||
x.pow_without_unit(&KalkValue::from(1f64).div_without_unit(&n))
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
pub mod special_funcs {
|
||||
use crate::{as_number_or_return, float, kalk_value::KalkValue};
|
||||
use crate::{as_number_or_return, float, kalk_num::KalkValue};
|
||||
|
||||
pub fn factorial(x: KalkValue) -> KalkValue {
|
||||
let (real, _, unit) = as_number_or_return!(x);
|
||||
@ -14,7 +14,7 @@ pub mod special_funcs {
|
||||
}
|
||||
|
||||
pub(crate) mod funcs {
|
||||
use crate::kalk_value::KalkValue;
|
||||
use crate::kalk_num::KalkValue;
|
||||
use crate::prelude::funcs::abs;
|
||||
use crate::{as_number_or_return, float};
|
||||
|
||||
@ -101,7 +101,7 @@ pub(crate) mod funcs {
|
||||
pub fn hypot(x: KalkValue, y: KalkValue) -> KalkValue {
|
||||
let (real, imaginary, unit) = as_number_or_return!(x.clone());
|
||||
let (real_rhs, imaginary_rhs, _) = as_number_or_return!(y.clone());
|
||||
if imaginary.abs() != 0f64 || imaginary_rhs != 0f64 {
|
||||
if imaginary != 0f64 || imaginary_rhs != 0f64 {
|
||||
let abs_x = abs(x);
|
||||
let abs_y = abs(y);
|
||||
crate::prelude::funcs::sqrt(
|
||||
|
Loading…
Reference in New Issue
Block a user