Problem 3108. Don't Try, give up and return NaN.
This is another version of problem 3107.
The goal is to return values of an array A given index N, but return NaN for incorrect index.
Example:
>> A = 1:5;
>> N = [-1 2 6];
>> values = giveup(A, N)
values =
NaN 2 NaN
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers41
Suggested Problems
-
Project Euler: Problem 5, Smallest multiple
1644 Solvers
-
Back to basics 23 - Triangular matrix
1114 Solvers
-
How many trades represent all the profit?
613 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
703 Solvers
-
657 Solvers
More from this Author40
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!