Findindx
Jump to navigation
Jump to search
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