from spotdesirability.functions.rsm import conversion_pred
x = [1.0, 2.0, 3.0]
conversion = conversion_pred(x)
print(conversion)87.31320000000002
Predicts the percent conversion 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 percent conversion. |