insert zeros into vector

63 Ansichten (letzte 30 Tage)
Liron Sabatani
Liron Sabatani am 14 Apr. 2020
Kommentiert: Stephan am 14 Apr. 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!

Akzeptierte Antwort

Stephan
Stephan am 14 Apr. 2020
a = [1 2 3 4 5]
b = zeros(4,numel(a))
result = reshape([a; b],1,[])
  2 Kommentare
Liron Sabatani
Liron Sabatani am 14 Apr. 2020
thank you king!
Stephan
Stephan am 14 Apr. 2020
Did you notice that you can accept and or vote for useful answers?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by