Effacer les filtres
Effacer les filtres

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

21 vues (au cours des 30 derniers jours)
essi
essi le 14 Juin 2013
Modifié(e) : Hayder le 3 Juin 2019
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

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 14 Juin 2013
Modifié(e) : Azzi Abdelmalek le 14 Juin 2013

Plus de réponses (2)

sathish kumar rb
sathish kumar rb le 11 Nov 2017
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 le 3 Juin 2019
Modifié(e) : Hayder le 3 Juin 2019
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;

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by