Returns a portion of the input vector with defined start and end points. Interpolation will be used to create the first and last points of the result if the start and end values do not coincide with actual points in the input vector.
Arguments 2 and 3 define the beginning and end of the vector.
Number | Type | Compulsory | Default | Description |
---|---|---|---|---|
1 |
real array |
Yes |
|
Vector |
2 |
real |
No |
start of vector |
Start x value |
3 |
real |
No |
end of vector |
end x value |
Return type: real array
Suppose we have a vector called VOUT which was the result of a simulation running from 0 to 1mS. We want to perform some analysis on a portion of it from $250\mu$S to $750\mu$S. The following call to Truncate would do this:
Truncate(VOUT, 250u, 750u) |
|