| Contents > Vector Maths | Index |
Methods
The available data transformation utiities are listed below.
VectorMath Methods
| Difference | Compute the first difference of any vector. The initial value is always zero. |
| Divide | Divide a vector by another vector (or scalar) |
| Drop | Create a vector by removing count elements from an existing vector |
| ExponentialSmooth | Browns exponential smoothing with optional smoothing constant (default=0.7) |
| Max | Find the largest item in the content of any vector |
| Min | Find the smallest item in the content of any vector |
| MovingAverage | Scan the content of any vector to give a moving average with given window and optional padding |
| MovingTotal | Sum the content of any vector to give a moving total with given window and optional padding |
| Multiply | Multiply a vector by another vector (or scalar) |
| Negate | Compute the negative values of any vector |
| Pow | Raise a vector to a given power |
| Range | Generate indices from start up to end |
| Reciprocal | Compute the inverse values of any vector |
| RunningMax | Scan the content of any vector to give a running maximum |
| RunningMin | Scan the content of any vector to give a running minimum |
| RunningTotal | Sum the content of any vector to give a running total |
| Sqrt | Compute the square root of any vector |
| Subtract | Subtract a vector from another vector (or scalar) |
| Sum | Add a vector to another vector (or scalar) |
| Tail | Create a vector from the last count elements of an existing vector |
| Take | Create a vector given existing content and new length, padding with zero if required |
| Total | Sum the content of any vector |
Requirements
Namespace: Causeway
Assembly: SharpPlot (in sharpplot.dll)
