Docs.rs
concision-0.1.12
concision 0.1.12
Docs.rs crate page
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
FL03
Dependencies
concision-core ^0.1.12
normal
concision-data ^0.1.12
normal
optional
concision-derive ^0.1.12
normal
optional
concision-gnn ^0.1.12
normal
optional
concision-linear ^0.1.12
normal
optional
concision-macros ^0.1.12
normal
optional
anyhow ^1
dev
lazy_static ^1
dev
ndarray ^0.15
dev
num ^0.4
dev
tracing ^0.1
dev
tracing-subscriber ^0.3
dev
Versions
50%
of the crate is documented
Go to latest version
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
concision
0.1.12
Tanh
Required Associated Types
Output
Required Methods
tanh
Implementations on Foreign Types
&'a Complex<f32>
&'a Complex<f64>
&'a f32
&'a f64
ArrayBase<S, D>
Complex<f32>
Complex<f64>
f32
f64
Implementors
In concision::func::activate
?
Settings
Trait
concision
::
func
::
activate
::
Tanh
Copy item path
source
·
[
−
]
pub trait Tanh { type
Output
; // Required method fn
tanh
(&self) -> Self::
Output
; }
Required Associated Types
§
source
type
Output
Required Methods
§
source
fn
tanh
(&self) -> Self::
Output
Implementations on Foreign Types
§
source
§
impl
Tanh
for
f32
§
type
Output
=
f32
source
§
fn
tanh
(&self) -> <
f32
as
Tanh
>::
Output
source
§
impl
Tanh
for
f64
§
type
Output
=
f64
source
§
fn
tanh
(&self) -> <
f64
as
Tanh
>::
Output
source
§
impl
Tanh
for
Complex
<
f32
>
§
type
Output
=
Complex
<
f32
>
source
§
fn
tanh
(&self) -> <
Complex
<
f32
> as
Tanh
>::
Output
source
§
impl
Tanh
for
Complex
<
f64
>
§
type
Output
=
Complex
<
f64
>
source
§
fn
tanh
(&self) -> <
Complex
<
f64
> as
Tanh
>::
Output
source
§
impl<'a>
Tanh
for &'a
f32
§
type
Output
=
f32
source
§
fn
tanh
(&self) -> <&'a
f32
as
Tanh
>::
Output
source
§
impl<'a>
Tanh
for &'a
f64
§
type
Output
=
f64
source
§
fn
tanh
(&self) -> <&'a
f64
as
Tanh
>::
Output
source
§
impl<'a>
Tanh
for &'a
Complex
<
f32
>
§
type
Output
=
Complex
<
f32
>
source
§
fn
tanh
(&self) -> <&'a
Complex
<
f32
> as
Tanh
>::
Output
source
§
impl<'a>
Tanh
for &'a
Complex
<
f64
>
§
type
Output
=
Complex
<
f64
>
source
§
fn
tanh
(&self) -> <&'a
Complex
<
f64
> as
Tanh
>::
Output
source
§
impl<A, S, D>
Tanh
for
ArrayBase
<S, D>
where A:
Clone
+
Tanh
, D:
Dimension
, S:
Data
<Elem = A>,
§
type
Output
=
ArrayBase
<
OwnedRepr
<<A as
Tanh
>::
Output
>, D>
source
§
fn
tanh
(&self) -> <
ArrayBase
<S, D> as
Tanh
>::
Output
Implementors
§