How to select particular columns in each cell of one cell array?

조회 수: 28 (최근 30일)
essi
essi 2013년 6월 14일
편집: Hayder 2019년 6월 3일
Dear all, I am Beginner in MATLAB and I have this problem:
I have a cell array with 491 cell(with different dimensions) and I want to select particular columns in each cell, for example I want to select column 50 in cell 10, so I do this: A=[cell array]; b=A(:,10); c=b(b{:,50}); but error is: ??? Index exceeds matrix dimensions. now how can I this?
best regards
ESSI

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 14일
편집: Azzi Abdelmalek 2013년 6월 14일

추가 답변 (2개)

sathish kumar rb
sathish kumar rb 2017년 11월 11일
i need to select a column from giving the number in one csv file and tat particular column number will be need to select in another csv file

Hayder
Hayder 2019년 6월 3일
편집: Hayder 2019년 6월 3일
To select the second column:
AT=cell2table(A);%each column will have a name start with A and followed by column index
A1=AT.A2;

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by