필터 지우기
필터 지우기

Resetting a Time vector to zero

조회 수: 4 (최근 30일)
T
T 2013년 3월 25일
suppose I have the following time vector
x = [ 4 5 6 7 8 9 10 ]
I want it reset the vector to zero so I could use:
stepsize = x(2)-x(1)
newx = [ 0:stepsize:length(x)-1]
output:
0 1 2 3 4 5 6
Is there a faster way or more efficient way to do this in matlab?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 25일
편집: Azzi Abdelmalek 2013년 3월 25일
  댓글 수: 1
Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 25일
x = [ 4.5 5.7 7.7 8.9 9.8 10.1 ]
newx=x-x(1)
newx =
0 1.2000 3.2000 4.4000 5.3000 5.6000

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by