PLS_Toolbox Documentation: findindx | < figmerit | fir2ss > |
findindx
Purpose
Finds the index of the array element closest to value r.
Synopsis
index = findindx(array,r)
Description
Inputs are an array of values (array) and a value to locate (r). Output (index) is the linear index into array which will return the closest value to r.
Examples
index = findindx(array,r); %get an index
nearest_value = array(index); %find the value
See Also
< figmerit | fir2ss > |