MATLAB double、str、cell间的类型转换

注:转换的前提是数组的格式符合目标数组的要求,能够转换。不然会失败

str2num
str2double
srt2mat
strvcat
strcat
cellstr字符数组转为元胞数组(没有strcell)
int2str整数转换为字符串数组,非整数将四舍五入
num2str非整数数组转化为字符串数组
mat2str%数值数组转化为字符串数组
cell2mat  mat2cell
num2cell(注:没有cell2num)

你可能感兴趣的:(Matlab)