extract information from cell array

In each of the 6x4cell cell in the textData variable (picture 1) has a column of grades as shown in picture 2. I am trying to extract all the grades as shown into a new cell array named grades. How can I do it?

Respuestas (1)

Bob Thompson
Bob Thompson el 22 de Oct. de 2018
You should be able to extract the data using the following:
Grades = '';
for k = 1:length(textData);
Grades = [Grades, textData{k}{2:6,2}];
end
I'm not sure exactly how you want to organize the data, however, so if you have more information I can take a guess at it. Currently, this just extracts the grades into one long text string.

Categorías

Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.

Productos

Versión

R2018b

Etiquetas

Preguntada:

el 22 de Oct. de 2018

Respondida:

el 22 de Oct. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by