Matlab Array Type Change
How to convert between cell, double and char array?
- there are three type of array in matlab
- cell array
- double array
- char array
How to convert double array to char array?
- use
num2strormat2str
How to convert char array to double array?
- use
str2num<0.0001> andstr2double<0.01>
How to convert cell array to char array?
- use
cell2mat
How to convert char array to cell array?
- use
cellstr
How to convert cell array to double array?
- use
cell2matandstr2num
How to convert double array to cell array?
- use
num2cell