MATLAB - Cell Arrays and Structures
Consider the code:
What is the class of
C = {10, 20, 30};
result = C(2);What is the class of
result?C = {10, 20, 30};
result = C(2);result?C(2) returns a cell array containing the second cell, not the content.result is of class cell.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions