MATLAB - Cell Arrays and Structures
Given
C = {5, 10; 15, 20};, what does C(2,1) return?C = {5, 10; 15, 20};, what does C(2,1) return?() indexing returns a cell array subset, not the content.C(2,1) returns a 1x1 cell array containing the element at row 2, column 1, which is 15.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions