- 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 1 (23.52 KiB) Viewed 79 times
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)
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 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)
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