Docs.rs
adtensor-0.0.3
adtensor 0.0.3
Docs.rs crate page
GPL-3.0
Links
Repository
crates.io
Source
Owners
charles-r-earp
Dependencies
generic-array ^0.12.0
normal
typenum ^1.10.0
normal
criterion ^0.2
dev
nalgebra ^0.18.0
dev
ndarray ^0.12.1
dev
Versions
0%
of the crate is documented
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
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
adtensor
0.0.3
Dot
Required Associated Types
Output
Required Methods
dot
Implementors
In adtensor::
ops
adtensor
::
ops
Trait
Dot
Copy item path
Source
pub trait Dot<R> { type
Output
; // Required method fn
dot
(self, rhs: R) -> Self::
Output
; }
Required Associated Types
§
Source
type
Output
Required Methods
§
Source
fn
dot
(self, rhs: R) -> Self::
Output
Implementors
§
Source
§
impl<'a, 'b, T, N>
Dot
<&'b
Tensor
<T, N, T,
CMaj
>> for &'a
Tensor
<T, N, T,
RMaj
>
where T:
Add
<T, Output = T> +
AddAssign
<T> +
Mul
<T, Output = T> +
Default
+
Sum
+
Sized
+
Copy
, N:
ArrayLength
<T> +
Unsigned
,
Source
§
type
Output
= T