| import numpy as np | |
| def get_unique_values(start, end, count): | |
| ''' | |
| Returns a list of unique countinous values between start and end | |
| Args: | |
| start: int - less than end | |
| end: int - greater than start | |
| count: int - number of values to return | |
| Returns: | |
| List[int] | |
| ''' | |
| return np.arange(start, end, (end - start)/count)[:count] |