필터 지우기
필터 지우기

Interpolating angle between -0.2 to 0.2 rad

조회 수: 1 (최근 30일)
HN
HN 2020년 8월 14일
댓글: KSSV 2020년 8월 14일
Can anyone help for a valid interpolation of an angle from -0.2 to 0.2 to give 1001 points in between? SLERP is not doing this range for me ?
Thank you

채택된 답변

KSSV
KSSV 2020년 8월 14일
x0 = -0.2 ; x1 = 0.2 ;
dx = 1/1000 ;
x = x0:dx:x1 ;
  댓글 수: 2
HN
HN 2020년 8월 14일
Sorry, My question is now modified.
Thanks
KSSV
KSSV 2020년 8월 14일
x0 = -0.2 ; x1 = 0.2 ;
n = 1001 ;
x = linspace(x0,x1,n) ;

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by