add column in table
55 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Luca Re
el 11 de Jul. de 2023
Comentada: Luca Re
el 12 de Jul. de 2023
T= struct2table(G);
c=1:length(T);
c=c';
i want to add c as new column of T!
0 comentarios
Respuesta aceptada
Voss
el 11 de Jul. de 2023
G = struct('ones',{1 1 1 1},'twos',{2 2 2 2}); % for example
T= struct2table(G);
c=1:height(T); % use height
c=c';
T.new_column = c
7 comentarios
Voss
el 12 de Jul. de 2023
[Is it] possible [to] move c in the first column?
Yes, see below:
G = struct('ones',{1 1 1 1},'twos',{2 2 2 2}); % for example
T= struct2table(G);
c=1:height(T); % use height
c=c';
T.new_column = c;
T = T(:,[end 1:end-1])
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!