Effacer les filtres
Effacer les filtres

Smallest change for a please

1 vue (au cours des 30 derniers jours)
Aswas
Aswas le 10 Oct 2015
Modifié(e) : Aswas le 12 Oct 2015
Hi, I have a data for angle in degrees: deg=[10 10 270], and would like to calculate smallest change ie ans=(0 0 80)
  2 commentaires
Walter Roberson
Walter Roberson le 10 Oct 2015
Smallest change in angle between what and what?
Aswas
Aswas le 11 Oct 2015
Modifié(e) : Aswas le 11 Oct 2015
10, 10 and 270 are true degrees (ie direction of a pointer), so at 1st min was pointing 10deg, 2nd min pointing 10deg, 3rd min pointing 270deg. I'd like my answer to display 0deg for first min, 0deg for second minute (diff btw 10 and 10) and 80deg (diff btw 10 and 270 deg)for 3rd min(not 260 degrees)

Connectez-vous pour commenter.

Réponse acceptée

Guillaume
Guillaume le 11 Oct 2015
angles = [10 10 270];
changes = mod(diff(angle), 180)
  1 commentaire
Aswas
Aswas le 11 Oct 2015
Thanks, sorted.

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 11 Oct 2015
80 degrees is not the difference between 10 and 270. 100 degrees is the difference between 10 and 270. You have to pass down through the 10 to 0 degrees and then travel another 90 degrees to reach -90 degrees = 270 degrees, and that is a total of 100 degrees.
  4 commentaires
Walter Roberson
Walter Roberson le 11 Oct 2015
I had added the 0 because initially you wanted 3 outputs for 3 inputs.
Aswas
Aswas le 12 Oct 2015
Thanks again.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Elementary Math dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by