Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 295 Bytes

Arange.to_linspace.md

File metadata and controls

22 lines (12 loc) · 295 Bytes

Arange.to_linspace (function)

def to_linspace(self)

Convert from Arange to Linspace.

num = int((self.stop - self.start)/self.step)
Linspace(self.start, self.stop-self.step, num)

Returns