Please explain this syntax

1 visualización (últimos 30 días)
ANARKENUNG
ANARKENUNG el 12 de Sept. de 2015
Respondida: Walter Roberson el 12 de Sept. de 2015
A=importdata(filename,delimiterIn,headlinersIn);
>> for k=[3,5]
disp(A.colheaders{1,k})
disp(A.data(:,k))
disp(' ');
end
what does 3rd , 4th, 5th line mean? can anyone explain?

Respuestas (2)

Star Strider
Star Strider el 12 de Sept. de 2015
‘what does 3rd , 4th, 5th line mean? can anyone explain?’
The disp function displays whatever is in its argument to the Command Window.

Walter Roberson
Walter Roberson el 12 de Sept. de 2015
For some kinds of files, importdata() returns a structure. One field of the structure is a cell array of strings that are the column headers that were read, and another field of the structure is a numeric array of the data that was read. The loop is going around for certain columns displaying the column header and then the data for that column, and then a blank line.

Categorías

Más información sobre Workspace Variables and MAT Files en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by