Problem 175. Double Deal

Created by @bmtran

Description

Given an input vector v, return the first element as the first output, the second element as the second output, etc. The functionality of this problem is the double array analog to the deal function in MATLAB for cell arrays.

Example

Input:

    x = 1:10;
    [a,b,c,d] = doubleDeal(x);

Output:

    a = 1
    b = 2
    c = 3
    d = 4

Tags

Problem Group

34 solvers submitted 114 solutions (3.35 solutions/solver).