MATLAB: How to create a subcell

cellcell arrays

Hi, I have trouble creating a subcell within a cell array, can someone help me?
I am supposed to type:
[sin] [[0][2pi][pi/100]] [0 1 1 0]
Thank you!

Best Answer

{'sin', {0, '2*pi', 'pi/100'}, [0 1 1 0]}
or perhaps
{'sin', {0, 2*pi, pi/100}, [0 1 1 0]}
Related Question