mirror of
https://github.com/WallabyLester/RBF-aPID-Controller.git
synced 2026-05-10 13:09:12 +08:00
Changed evaluate to predict.
This commit is contained in:
@@ -34,12 +34,12 @@ public:
|
||||
~RBFModel();
|
||||
|
||||
/**
|
||||
* @brief Evaluate the RBF output for a given input.
|
||||
* @brief Predict the RBF output for a given input.
|
||||
*
|
||||
* @param input A pointer to an array of input values.
|
||||
* @return The computed output of the RBF model.
|
||||
*/
|
||||
double evaluate(const double* input);
|
||||
double predict(const double* input);
|
||||
|
||||
/**
|
||||
* @brief Adapt weights based on the error and learning rate.
|
||||
|
||||
Reference in New Issue
Block a user