Problem 266. Return the Nth Output from an Input Command

Description

Given F, a cell array whose first element is a function handle and subsequent elements are arguments, return the N th output of that function. When N is a vector, return outputs in the same order as N.

Example

    F = {@min, [5 2 3 9 13 4 1 7 8]}
    N = 2;
    output = nth_output(F,N);
    output = 7
    F = {@min, [5 2 3 9 13 4 1 7 8]}
    N = [2,1]
    [output1 output2] = nth_output(F,N);
    output1 = 7
    output2 = 1

Solution Stats

32.91% Correct | 67.09% Incorrect
Last Solution submitted on Mar 04, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers68

Suggested Problems

More from this Author56

Community Treasure Hunt

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

Start Hunting!