2023-10-09 18:27:29 +00:00
|
|
|
from trajectron.model.dynamics import Dynamic
|
2020-04-06 01:43:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Linear(Dynamic):
|
|
|
|
def init_constants(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def integrate_samples(self, v, x):
|
|
|
|
return v
|
|
|
|
|
|
|
|
def integrate_distribution(self, v_dist, x):
|
|
|
|
return v_dist
|