Borrar filtros
Borrar filtros

Create row with text from loop for a table

4 visualizaciones (últimos 30 días)
Isai Fernandez
Isai Fernandez el 19 de Mayo de 2020
Editada: Isai Fernandez el 19 de Mayo de 2020
I want to create a table with a row like this:
[Bar No.1; Bar No.2 ... Bar No.n]
I tried it with:
%N = 4x6;
capa = zeros(size(N,1),1);
i=1;
while i<= size(N,1)
capa(i) = sprintf('Capa #%d',i);
i=i+1;
end
I tried also with fprintf, but it doesn't work.
My table has other information which I want to add this column as first:

Respuesta aceptada

Stijn Haenen
Stijn Haenen el 19 de Mayo de 2020
you can create table headers with:
a=table();
for i=1:10;
a.(sprintf('bar %g',i))=i;
end
  3 comentarios
Stijn Haenen
Stijn Haenen el 19 de Mayo de 2020
N=4;
a=table();
for i=1:10;
a.(sprintf('bar %g',i))=zeros(N,1);
end
Isai Fernandez
Isai Fernandez el 19 de Mayo de 2020
Editada: Isai Fernandez el 19 de Mayo de 2020
How about adding columns with loops? Can you help me?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by