Source code for pyleecan.Methods.Import.ImportGenVectLin.comp_step
[docs]def comp_step(self):
"""Compute the Step between two points of the linspace"""
self.check()
data = self.get_data()
return data[1] - data[0]
[docs]def comp_step(self):
"""Compute the Step between two points of the linspace"""
self.check()
data = self.get_data()
return data[1] - data[0]