I simply want to get the string out of the cell. Every time I try to make string operations it stores the variable into a cell. I want to get the value. I tried several things but nothing works unless I convert it into a char array.
For example:
c = {"test","test1"}
x = strcat("x",c(1,1))
This will store a new cell in the variable x. I just want a string...
{}as ina = your_cell_array{1}c(1,1)is a cell array, when you input cell arraysstrcatreturns cell arrays.x = strcat("x",c{1,1})to feedstrcatwith strings (not with a cell as second input) and it will produce a string