insert zeros into vector
40 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Liron Sabatani
el 14 de Abr. de 2020
Comentada: Stephan
el 14 de Abr. de 2020
I have an array of coeffecients [a1,a2,a3,...,an]
and I want to insert 4 zeros between each one.
the wanted result: [a1,0,0,0,0,a2,0,0,0,0,a3,0,0,0,0,...,0,0,0,0,an]
thank's for help!
0 comentarios
Respuesta aceptada
Stephan
el 14 de Abr. de 2020
a = [1 2 3 4 5]
b = zeros(4,numel(a))
result = reshape([a; b],1,[])
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures 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!