Findindx

From Eigenvector Research Documentation Wiki
Revision as of 15:25, 3 September 2008 by imported>Jeremy (Importing text file)
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

See Also

lamsel