Docs.rs
numerical-0.1.5
numerical 0.1.5
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
milkycopper
Dependencies
core_float ^0.2.0
normal
log ^0.4
normal
env_logger ^0.10
dev
Versions
30%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
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
Dim1Func
numerical
0.1.5
Dim1
Func
Required Methods
eval
Implementors
In numerical::
dim1_
func
numerical
::
dim1_func
Trait
Dim1
Func
Copy item path
Source
pub trait Dim1Func<T> { // Required method fn
eval
(&self, x: T) -> T; }
Required Methods
§
Source
fn
eval
(&self, x: T) -> T
Evaluate
f(x)
at
x
Implementors
§
Source
§
impl<T, F>
Dim1Func
<T> for F
where F:
Fn
(T) -> T,
Source
§
impl<T, S1, S2>
Dim1Func
<T> for
Polynomial
<T, S1, S2>
where S1:
VecStorage
<T>, S2:
VecStorage
<T>, T:
CoreFloat
,