How can I round down for the any number?
How can I round down for the any number?
(OP)
I want to round down 0.369 to 0.3? (nominal precision = 1)
0.319 to 0.3
0.392 to 0.3
0.319 to 0.3
0.392 to 0.3
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
How can I round down for the any number?
|
RE: How can I round down for the any number?
John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Digital Factory
Cypress, CA
Siemens PLM:
UG/NX Museum:
To an Engineer, the glass is twice as big as it needs to be.
RE: How can I round down for the any number?
a=0.369
b=floor(10*a)/10 ==> b=0.3
Regards
Didier Psaltopoulos
http://www.psi-cad.com
RE: How can I round down for the any number?
I am talking about placing dimensions on a Drawing.
RE: How can I round down for the any number?
NX follows engineering best practices (which are supported by industry standards) for the rounding of Drafting dimensions so as to mitigate the effects of potential accumulated errors. What you're proposing would produce an unworkable long term situation.
For more on this topic, go to:
http://www.eng-tips.com/viewthread.cfm?qid=197969
John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Digital Factory
Cypress, CA
Siemens PLM:
UG/NX Museum:
To an Engineer, the glass is twice as big as it needs to be.