Skip to main content

masked_add_array

Function masked_add_array 

Source
pub fn masked_add_array<T, D>(
    ma: &MaskedArray<T, D>,
    arr: &Array<T, D>,
) -> FerrayResult<MaskedArray<T, D>>
where T: Element + Add<Output = T> + Copy, D: Dimension,
Expand description

Add a masked array and a regular array, treating the regular array as unmasked. Broadcasts within the same dimension type.