correcting angels of polygon after inputting observed polygon angels in [dms] type (degree minute se
correcting angels of polygon after inputting observed polygon angels in [dms] type (degree minute se
(OP)
Hi
please help me
i faced with this error: Error in m1polygon (line 7) :f=dms2degrees(s)
please run this code and help me to correct it
you know that sum of angels in polygons can find with (n-2)*180
and when some one obsrved angels in surveying then angels have to be adjusted so corrections must be calculated
this code is for finding correction and applying them to the observed angles. angels from observation are in dms format,that means degree minute secound
clc
clear all
format long g
n=input('[number of angels in your polygon]=');
b=input('[dmsangels]=')
s=sum(b)
f=dms2degrees(s)
s1=(n-2)*(180)
e=s1-f %error
c=e/n %correction
b=f+c
thank you
please help me
i faced with this error: Error in m1polygon (line 7) :f=dms2degrees(s)
please run this code and help me to correct it
you know that sum of angels in polygons can find with (n-2)*180
and when some one obsrved angels in surveying then angels have to be adjusted so corrections must be calculated
this code is for finding correction and applying them to the observed angles. angels from observation are in dms format,that means degree minute secound
clc
clear all
format long g
n=input('[number of angels in your polygon]=');
b=input('[dmsangels]=')
s=sum(b)
f=dms2degrees(s)
s1=(n-2)*(180)
e=s1-f %error
c=e/n %correction
b=f+c
thank you
RE: correcting angels of polygon after inputting observed polygon angels in [dms] type (degree minute se
How many angles are you entering in line 5?
How many inputs does the dms2degrees handle?
TTFN (ta ta for now)
I can do absolutely anything. I'm an expert! https://www.youtube.com/watch?v=BKorP55Aqvg
FAQ731-376: Eng-Tips.com Forum Policies forum1529: Translation Assistance for Engineers Entire Forum list http://www.eng-tips.com/forumlist.cfm
RE: correcting angels of polygon after inputting observed polygon angels in [dms] type (degree minute se
https://www.mathworks.com/help/map/ref/dms2degrees...