cell matrix to char/double
cell matrix to char/double
(OP)
how do i convert a matrix of type cell to char type or double?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
cell matrix to char/double
|
RE: cell matrix to char/double
for i=1:size(cellArr, 2)
strTemp = mat2str(cell2mat( cellArr(i) ))
.
.
.
end