Complete the code to access the content of the first cell in the cell array.
value = C[1];Curly braces {} are used to access the content inside a cell in MATLAB.
Complete the code to extract a sub-cell array containing the first two cells.
subCells = C[1];Parentheses () are used to extract a sub-cell array from a cell array.
Fix the error in the code to assign the content of the second cell to variable x.
x = C[1];Curly braces {} are needed to access the content inside the second cell.
Fill both blanks to create a cell array with two cells and access the content of the first cell.
C = [1], [2]; value = C[3];
The cell array is created with two string cells. Curly braces with 1 access the first cell's content.
Fill all three blanks to create a cell array, extract a sub-cell array, and get the content of the second cell in the sub-array.
C = [1], [2], [3]; subC = C[4]; value = subC[5];
The cell array has three string cells. Parentheses with 1:2 extract the first two cells as a sub-cell array. Curly braces with 2 get the content of the second cell in the sub-array.