Skip to content

Commit

Permalink
erf to expx2
Browse files Browse the repository at this point in the history
  • Loading branch information
jtlap committed Sep 27, 2023
1 parent b9cbb4c commit 8227893
Show file tree
Hide file tree
Showing 14 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion include/kyosu/complex/erf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ namespace kyosu
//!
//! **Return value**
//!
//! 1. a real input z is treated as if complex(z) was entered.
//! 1. a real input z returns eve::erf(z).
//!
//! 2. The value of the error function in the complex plane is returned
//!
Expand Down
2 changes: 1 addition & 1 deletion include/kyosu/complex/erfcx.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ namespace kyosu
//!
//! **Return value**
//!
//! 1. a real input z is treated as if complex(z) was entered.
//! 1. a real input z return eve::erfcx(z).
//!
//! 2. The value of the normalized complementary error function is returned.
//!
Expand Down
2 changes: 1 addition & 1 deletion include/kyosu/complex/erfi.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace kyosu
//!
//! **Parameters**
//!
//! * `z` : Vcomplex or real value to process.
//! * `z` : complex or real value to process.
//!
//! **Return value**
//!
Expand Down
4 changes: 2 additions & 2 deletions include/kyosu/complex/eta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ namespace kyosu
//!
//! **Parameters**
//!
//! * `z` : Vcomplex or real value to process.
//! * `z` : complex or real value to process.
//!
//! **Return value**
//!
//! Returns the Dirichlet alternating zeta function: sum \f$ \displaystyle \sum_0^\infty \frac{(-1)^n}{(n+1)^z}\f$
//! Returns the Dirichlet alternating zeta function: \f$ \displaystyle \sum_0^\infty \frac{(-1)^n}{(n+1)^z}\f$
//!
//! @groupheader{Example}
//!
Expand Down
2 changes: 1 addition & 1 deletion include/kyosu/complex/lambda.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ namespace kyosu
//!
//! **Parameters**
//!
//! * `z` : Vcomplex or real value to process.
//! * `z` : complex or real value to process.
//!
//! **Return value**
//!
Expand Down
2 changes: 1 addition & 1 deletion include/kyosu/complex/zeta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ namespace kyosu
//! **Parameters**
//!
//! * `k` : scalar unsigned value, parameter of the sum.
//! * `z` : Vcomplex or real value to process.
//! * `z` : complex or real value to process.
//!
//! **Return value**
//!
Expand Down
2 changes: 1 addition & 1 deletion include/kyosu/functions/exp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace kyosu
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dickson T> constexpr T exp(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpr T exp(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpr T exp(T z) noexcept;
//! }
//! @endcode
//!
Expand Down
4 changes: 2 additions & 2 deletions include/kyosu/functions/exp10.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dickson T> constexp10r T exp10(T z) noexcept;
//! template<eve::floating_ordered_value T> constexp10r T exp10(T z) noexcept;
//! template<kyosu::concepts::cayley_dickson T> constexpr T exp10(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpr T exp10(T z) noexcept;
//! }
//! @endcode
//!
Expand Down
4 changes: 2 additions & 2 deletions include/kyosu/functions/exp2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dickson T> constexp2r T exp2(T z) noexcept;
//! template<eve::floating_ordered_value T> constexp2r T exp2(T z) noexcept;
//! template<kyosu::concepts::cayley_dickson T> constexpr T exp2(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpr T exp2(T z) noexcept;
//! }
//! @endcode
//!
Expand Down
6 changes: 3 additions & 3 deletions include/kyosu/functions/exp_i.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace kyosu
//! @addtogroup functions
//! @{
//! @var exp_i
//! @brief Computes the exponential of the argument times i.
//! @brief Computes the exponential of i times the argument
//!
//! **Defined in Header**
//!
Expand All @@ -58,7 +58,7 @@ namespace kyosu
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dickson T> constexp_ir T exp_i(T z) noexcept;
//! template<eve::floating_ordered_value T> constexp_ir T exp_i(T z) noexcept;
//! template<eve::floating_ordered_value T> constexp_ir T exp_i(T z) noexcept;
//! }
//! @endcode
//!
Expand All @@ -68,7 +68,7 @@ namespace kyosu
//!
//! **Return value**
//!
//! Returns the `exp(i*z)`.
//! Returns `exp(i*z)`.
//!
//! @groupheader{Example}
//!
Expand Down
6 changes: 3 additions & 3 deletions include/kyosu/functions/exp_ipi.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace kyosu
//! @addtogroup functions
//! @{
//! @var exp_ipi
//! @brief Computes the exponential of the argument times i.
//! @brief Computes the exponential of \f$i\pi\f$ times the argument.
//!
//! **Defined in Header**
//!
Expand All @@ -58,7 +58,7 @@ namespace kyosu
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dickson T> constexp_ipir T exp_ipi(T z) noexcept;
//! template<eve::floating_ordered_value T> constexp_ipir T exp_ipi(T z) noexcept;
//! template<eve::floating_ordered_value T> constexp_ipir T exp_ipi(T z) noexcept;
//! }
//! @endcode
//!
Expand All @@ -68,7 +68,7 @@ namespace kyosu
//!
//! **Return value**
//!
//! Returns the `exp(i*z)`.
//! Returns `exp(i*pi(as(z))*z)`.
//!
//! @groupheader{Example}
//!
Expand Down
6 changes: 3 additions & 3 deletions include/kyosu/functions/expm1.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace kyosu
//! @addtogroup functions
//! @{
//! @var expm1
//! @brief Computes the expm1onential of the argument minus 1.
//! @brief Computes the exponential of the argument minus 1.
//!
//! **Defined in Header**
//!
Expand All @@ -53,7 +53,7 @@ namespace kyosu
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dickson T> constexpm1r T expm1(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpm1r T expm1(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpm1r T expm1(T z) noexcept;
//! }
//! @endcode
//!
Expand All @@ -63,7 +63,7 @@ namespace kyosu
//!
//! **Return value**
//!
//! Returns the expm1onential of the argument minus &.
//! Returns the expm1onential of the argument minus 1.
//! for real and complex typed inputs, provisions are made to ensure good precision near zero.
//!
//! @groupheader{Example}
Expand Down
4 changes: 2 additions & 2 deletions include/kyosu/functions/expmx2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dickson T> constexpmx2r T expmx2(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpmx2r T expmx2(T z) noexcept;
//! template<kyosu::concepts::cayley_dickson T> constexpr T expmx2(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpr T expmx2(T z) noexcept;
//! }
//! @endcode
//!
Expand Down
4 changes: 2 additions & 2 deletions include/kyosu/functions/expx2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dickson T> constexpx2r T expx2(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpx2r T expx2(T z) noexcept;
//! template<kyosu::concepts::cayley_dickson T> constexpr T expx2(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpr T expx2(T z) noexcept;
//! }
//! @endcode
//!
Expand Down

0 comments on commit 8227893

Please sign in to comment.