MATLAB - Cell Arrays and Structures
What is the output of the following code?
C = {1, 2; 3, 4};
result = C{1,2} + C{2,1};C = {1, 2; 3, 4};
result = C{1,2} + C{2,1};C{1,2} is 2 and C{2,1} is 3, both numeric values.result is 5.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions