putting zero between sequence

3 views (last 30 days)
reto panda
reto panda on 31 May 2020
Commented: madhan ravi on 31 May 2020
I have "x" with length 7400 . I want to put zeros between this sequnce to get "y" with length 9200 . how can I do this?
x=[1:1:7400]

Answers (1)

madhan ravi
madhan ravi on 31 May 2020
y = [x, zeros(1, 92e2 - 74e2)]
  5 Comments
reto panda
reto panda on 31 May 2020
this is not true. zeros all are together in y.
but Ii found the answer myself
so thanks anyway
madhan ravi
madhan ravi on 31 May 2020
Huh? Post your answer.

Sign in to comment.

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!