Hi, I am trying to create an array of row cells with:
data = ['1';'2';'3';'4';'5';'6';'7';'8';'9';'10';'11';'12';'13';'14';'15';'16';'17';'18';'19';'20';];
where I expect an array of cells of 25 elements. but I get:
length(data) = 33
therefore, the numbers 12, 13, etc. are considered 2 bits.
My question is, how can I guarantee that an array of cells has a length of 20? also the function that i put in the array of cells should be an array of row cells even if i use ints!
string matlab cell
brucezepplin
source share