-
Notifications
You must be signed in to change notification settings - Fork 8
Algorithm Library
meganlim edited this page Aug 3, 2018
·
10 revisions
Model Based Prognosers utilize Observer and Predictor algorithms to perform Prognostics of the system.
To add new observers to the system do the following:
- Copy EmptyObserver.cpp and EmptyObserver.h from the templates directory and rename to the name of your observer
- Follow the instructions inside EmptyObserver.cpp to create your observer
To add new predictors to the system do the following:
- Copy EmptyPredictor.cpp and EmptyPredictor.h from the templates directory and rename to the name of your predictor
- Follow the instructions inside EmptyPredictor.cpp to create your predictor