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
I tryed to start in this way, but a do not went this far... ;-)
Determine whether a vector is monotonically increasing
9246 Solvers
Make an N-dimensional Multiplication Table
106 Solvers
Who knows the last digit of pi?
488 Solvers
78 Solvers
Simple equation: Annual salary
3402 Solvers