Filter löschen
Filter löschen

Add columns to tables with loops

11 Ansichten (letzte 30 Tage)
Isai Fernandez
Isai Fernandez am 19 Mai 2020
Beantwortet: Ameer Hamza am 19 Mai 2020
I want to create a first column for my table, after a loop. I tried like this:
%N(mxn)
i=1;
while i<= size(N,1)
capa(i) = fprintf('Bar #',int2str(i));
i=i+1;
end
Furthermore I used sprintf.
The result in this case of three rows, it would be:
Bar 1
Bar 2
Bar 3

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 19 Mai 2020
See this example
t = array2table(rand(3)); % example table
rows = compose('Bar %d', [1 2 3]);
rows = vertcat(rows{:});
T = [table(rows, 'VariableNames', {'labels'}) t];

Weitere Antworten (0)

Kategorien

Mehr zu Tables finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by