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

Solution Stats

324 Solutions

91 Solvers

Last Solution submitted on Dec 07, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...