How to index a cell with two columns?
5 views (last 30 days)
Show older comments
Hello, everyone. I have a cell which looks like this:
775.446000000000 774.706000000000
774.706000000000 773.246000000000
773.246000000000 772.906000000000
772.906000000000 770.906000000000
770.906000000000 770.116000000000
Is there a way to extract data or index from this cell to get a result like the below one?
775.446000000000
774.706000000000
773.246000000000
772.906000000000
770.906000000000
770.116000000000
Basically,I want get all of the data from the first column and last one from second column since the other data are repeated which are useless for me. Anybody would like to help me out...thanks a lot!
0 Comments
Accepted Answer
Richard Brown
on 30 Apr 2012
[data(:, 1); data(end,2)]
3 Comments
Richard Brown
on 30 Apr 2012
A cell array is pretty much like a regular array, except that the contents are "cells" rather than numbers. So you can manipulate them the same way as with regular arrays.
You only use the cell indexing {} when you want to get at what is inside the cells.
So what I did was to vertically concatenate the first column (data(:, 1)) with the last entry of the second column (data(end,2)). This is exactly the same command as I'd use if your data was just in a regular matrix.
More Answers (0)
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!