필터 지우기
필터 지우기

How do we shift the cell of a variable and replace it by NaN?

조회 수: 2 (최근 30일)
Anu
Anu 2022년 1월 25일
댓글: Anu 2022년 1월 25일
I have a variable x. The x contains a large number of values. When I open x in the workspace, I see the first value is in the 1st cell, second value is in the second cell and so on. I want to shift the the values from celll 1 to cell 5 and replace the first five cells with NaN. How will we do this?
For example, x = 20, 30, 40, 50, 60
I want to shift these values, therefore my new x after shifting will be NaN NaN NaN NaN NaN 20, 30, 40, 50, 60
Any help will really be appreciated.
Thanks.

채택된 답변

DGM
DGM 2022년 1월 25일
It depends what you mean by "shift". Consider the two examples:
x = 20:20:200
x = 1×10
20 40 60 80 100 120 140 160 180 200
a = [NaN(1,5) x] % simply concatenate
a = 1×15
NaN NaN NaN NaN NaN 20 40 60 80 100 120 140 160 180 200
b = [NaN(1,5) x(1:end-5)] % shift right and fill with NaN
b = 1×10
NaN NaN NaN NaN NaN 20 40 60 80 100
  댓글 수: 1
Anu
Anu 2022년 1월 25일
thanks so much, @DGM. For now, I want to do the first option, but good to know the later one for the future.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Adding custom doc에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by