I can I duplicate raws of variables?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Anna Maria
el 27 de Nov. de 2014
Comentada: Youssef Khmou
el 28 de Nov. de 2014
I have imported an xls file spread sheet and I need to replicate six time each raw.
Ex. a1,b1,c1,d1 a2,b2,c2,d2 .................. ..................
Into a1,b1,c1,d1 a1,b1,c1,d1 a1,b1,c1,d1 a1,b1,c1,d1 a1,b1,c1,d1 a1,b1,c1,d1
a2,b2,c2,d2 a2,b2,c2,d2 a2,b2,c2,d2 a2,b2,c2,d2 a2,b2,c2,d2 .................. ..................
0 comentarios
Respuesta aceptada
Youssef Khmou
el 27 de Nov. de 2014
try this standard method
a=[1:3];
b=[];
for n=1:6
b=[b a];
end
2 comentarios
Youssef Khmou
el 28 de Nov. de 2014
hi Maria, you add a semicolon to the above code :
%....
b=[]
for n=1:6
b=[b;a];
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import and Analysis 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!