Polynomial Structure |
public readonly struct Polynomial : IEquatable<Polynomial>
The Polynomial type exposes the following members.
| Name | Description | |
|---|---|---|
| Polynomial | Represents a cubic polynomial. |
| Name | Description | |
|---|---|---|
| Area | Gets the unscaled area below the cubic polynomial. | |
| K0 | Coefficient for 0th-degree term. | |
| K1 | Coefficient for 1st-degree term. | |
| K2 | Coefficient for 2nd-degree term. | |
| K3 | Coefficient for 3rd-degree term. |
| Name | Description | |
|---|---|---|
| Derivative | Evaluates the derivative of the polynomial at a given argument. | |
| Eval | Evaluates the polynomial at a given argument. | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| ToString | Gets a textual representation of the cubic polynomial. (Overrides ValueTypeToString) |