Basic cell array question
1 次查看(过去 30 天)
显示 更早的评论
I have imported data that are mixed text and numeric values into a cell array.
Format of the data before import looks like
Filename(string) temperature(num) xdata(num) ydata(num) zdata(num)
I have made cell object datafile with the above as a header and data of the various types below the header. It is quite convenient to leave the header in so that I can keep track of fields within the variable browser.
There are several distinct values of temperatures for which I'd like to excerpt and process the xdata, ydata, and zdata
I know I can slice off the header row and the filename column and do a cell2mat to get a table of purely numerical values that I can process with normal array commands. That makes keeping track of column numbers a bit more tricky and I've trimmed reality for the example. There are many more columns to the right of zdata. Right now they are all numeric but I can imagine other datasets where there will be other datatypes.
Is there a way within the cell construct that I can do find operations on temperature values, pick out those rows matching some conditions on temperature, and then process?
e.g. 'meta code'
index = find in column 2 for temperature = 30 ; % Find rows matching condition
x = datafile(index,3); y = datafile(index,4); z = datafile(index,5);
process
plot
etc.
Since cells are not numeric, I've tried several different ways of referencing into the cell array and converting to numeric values but am getting errors of various types
0 个评论
采纳的回答
Matt J
2012-11-16
编辑:Matt J
2012-11-16
Well, first of all you wouldn't use FIND. You'd just use logical indexing:
index=[false, [data{2:end,2}]==30]; %ignore header by doing 2:end
x=data(index,3);
y=data(index,4);
z=data(index,5);
更多回答(1 个)
Walter Roberson
2012-11-16
x = cell2mat(datafile(index,3)); y = cell2mat(datafile(index,4)); z = cell2mat(datafile(index,5));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!