• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Float-->Integer

Stats

  • Locked Locked
  • Replies 3
  • Subscribers 142
  • Views 4063
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Float-->Integer

Slawa
Slawa over 15 years ago

Hello 

At me a simple question. How to receive from number with a floating point an integer if at number with a floating point there is no fractional part that is;
X=10.5
Y=20.5
Z=Y-X=10.0 <---- how to make so that Z was whole. Z=10

 The case when X and Y always with a floating point and result of their subtraction always an integer interests. And necessity of it has arisen for function use oddp (Z) which analyzes only integers.

 

Regards

Slawa 

  • Cancel
  • ebecheto
    ebecheto over 15 years ago

    Your question is not very clear.

    You are looking for one of the following function : 

     ceiling, floor, fix, round, truncate ?

    Take a look to the skill Language Reference Manual : sklangref.pdf.

    Regards,

     

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Slawa
    Slawa over 15 years ago

     Yes this that is necessary. Thank you very much. And to look at a manual there is no possibility for technical reasons.

     

    Best regards

    Slawa 

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • dmay
    dmay over 15 years ago

    Since floating point numbers are not always perfectly represented on a computer, you might need to account for 9.999999 or 10.0000001 as being the same as 10.0. You could handle it like this:

    procedure(floatToInt(num)
        if(abs(round(num)-num) < 0.000001 then
            round(num)
        else
            num
        )
    )

    This will return an integer if the floating point is within 0.000001 of an integer and otherwise it will return the original float.

    floatToInt(10.0)
    10 
    floatToInt(10.1)
    10.1
    type(floatToInt(10.1))
    flonum
    type(floatToInt(10.0))
    fixnum
    type(floatToInt(10.00000001))
    fixnum

    Derek

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information