pub struct IntegrationGrid {
pub points: Vec<f64>,
pub weights: Vec<f64>,
}Expand description
Grid produced by Simpson’s rule on the canonical normal scale.
Fields§
§points: Vec<f64>Locations of the grid points, including odd and even Simpson nodes.
weights: Vec<f64>Corresponding Simpson weights scaled by 1/6.
Trait Implementations§
Source§impl Clone for IntegrationGrid
impl Clone for IntegrationGrid
Source§fn clone(&self) -> IntegrationGrid
fn clone(&self) -> IntegrationGrid
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntegrationGrid
impl Debug for IntegrationGrid
Source§impl PartialEq for IntegrationGrid
impl PartialEq for IntegrationGrid
impl StructuralPartialEq for IntegrationGrid
Auto Trait Implementations§
impl Freeze for IntegrationGrid
impl RefUnwindSafe for IntegrationGrid
impl Send for IntegrationGrid
impl Sync for IntegrationGrid
impl Unpin for IntegrationGrid
impl UnwindSafe for IntegrationGrid
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