Variable c is a cell array. Which of the following code can display the value of each cell element? A for i=1:length(c)
Posted: Fri May 20, 2022 11:52 am
Variable c is a cell array. Which of the following code can display the value of each cell element? A for i=1:length(c) disp(c(0)); end B. for x=c disp(x) end C for i=1:length(c) disp(c[0) end D.for "c disp({x}) end