pub enum EncodingScheme {
Amplitude,
Angle,
}Expand description
The encoding scheme that maps a classical real vector into a Hilbert-space state (paper section 3.1; plan D2).
Variants§
Amplitude
d features → n = ⌈log₂ d⌉ qubits (exponential compression); requires a unit-norm input.
Angle
d features → n = d qubits (one Ry rotation per feature); O(1) depth, robust to scale noise — no normalization requirement.
Trait Implementations§
Source§impl Clone for EncodingScheme
impl Clone for EncodingScheme
Source§fn clone(&self) -> EncodingScheme
fn clone(&self) -> EncodingScheme
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EncodingScheme
Source§impl Debug for EncodingScheme
impl Debug for EncodingScheme
impl Eq for EncodingScheme
Source§impl PartialEq for EncodingScheme
impl PartialEq for EncodingScheme
impl StructuralPartialEq for EncodingScheme
Auto Trait Implementations§
impl Freeze for EncodingScheme
impl RefUnwindSafe for EncodingScheme
impl Send for EncodingScheme
impl Sync for EncodingScheme
impl Unpin for EncodingScheme
impl UnsafeUnpin for EncodingScheme
impl UnwindSafe for EncodingScheme
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more