pub fn full_like<T, D>( other: &Array<T, D>, fill_value: T, ) -> Result<Array<T, D>, FerrayError>where T: Element, D: Dimension,
Create an array with the same shape as other, filled with fill_value.
other
fill_value
Analogous to numpy.full_like().
numpy.full_like()