Smallest change for a please

조회 수: 1 (최근 30일)
Aswas
Aswas 2015년 10월 10일
편집: Aswas 2015년 10월 12일
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
Walter Roberson
Walter Roberson 2015년 10월 10일
Smallest change in angle between what and what?
Aswas
Aswas 2015년 10월 11일
편집: Aswas 2015년 10월 11일
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)

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

채택된 답변

Guillaume
Guillaume 2015년 10월 11일
angles = [10 10 270];
changes = mod(diff(angle), 180)
  댓글 수: 1
Aswas
Aswas 2015년 10월 11일
Thanks, sorted.

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2015년 10월 11일
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
Walter Roberson
Walter Roberson 2015년 10월 11일
I had added the 0 because initially you wanted 3 outputs for 3 inputs.
Aswas
Aswas 2015년 10월 12일
Thanks again.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by