In this problem , you must convert a cell into a matrix and pad each cell with NaN.

Example 1:

If you have the input cell:

C = {[1 2 3],[]}

the output must be the matrix :

    output = [  1     2     3
               NaN   NaN   NaN]

Example 2:

C = {[1 2 3],8,[],[15  3]}

the output must be the matrix :

       1     2     3
       8   NaN   NaN
     NaN   NaN   NaN
      15     3   NaN

Solution Stats

143 Solutions

74 Solvers

Last Solution submitted on Dec 01, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...