Effacer les filtres
Effacer les filtres

Interpolating angle between -0.2 to 0.2 rad

1 vue (au cours des 30 derniers jours)
HN
HN le 14 Août 2020
Commenté : KSSV le 14 Août 2020
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

Réponse acceptée

KSSV
KSSV le 14 Août 2020
x0 = -0.2 ; x1 = 0.2 ;
dx = 1/1000 ;
x = x0:dx:x1 ;
  2 commentaires
HN
HN le 14 Août 2020
Sorry, My question is now modified.
Thanks
KSSV
KSSV le 14 Août 2020
x0 = -0.2 ; x1 = 0.2 ;
n = 1001 ;
x = linspace(x0,x1,n) ;

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Interpolation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by