FILLJUMPS Name
FILLJUMPS Purpose
Find indices needed to fill in value jumps in an array.
Category
Calling Sequence
filljumps, v, t, in Inputs
v = array to examine. in
t = max allowed value jump. in
Keyword Parameters
Outputs
in = indices needed to keep max jumps < t. out
Common Blocks
Notes
Notes: Use the IDL interpolate function to create
the new array or arrays needed. For example:
filljump, y, t, in ; Avoid large jumps in y.
y2 = interpolate(y,in) ; New y array.
x2 = interpolate(x,in) ; Corresponding x array.
Modification History
R. Sterner, 1995 Jul 18
Copyright (C) 1995, Johns Hopkins University/Applied Physics Laboratory
This software may be used, copied, or redistributed as long as it is not
sold and this copyright notice is reproduced on each copy made. This
routine is provided as is without any express or implied warranties
whatsoever. Other limitations apply as described in the file disclaimer.txt.