from spotdesirability.functions.rsm import activity_pred
x = [1.0, 2.0, 3.0]
activity = activity_pred(x)
print(activity)72.25518999999998
Predicts the thermal activity based on the input vector x.
| Name | Type | Description | Default |
|---|---|---|---|
| x | list or numpy array | A vector of three input values [x1, x2, x3]. | required |
| Name | Type | Description |
|---|---|---|
| float | float | The predicted thermal activity. |