Problem 176. Nearest

Description

Find the value and index of the element in vector x that is nearest to value y. y should be able to be a vector.

Example

    x = 3:10;
    y = 5.6
    [v,i] = nearVal(x,y);
    v = 6;
    i = 4;

Solution Stats

33.56% Correct | 66.44% Incorrect
Last Solution submitted on Oct 10, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers165

Suggested Problems

More from this Author56

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!