Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement the following in Python! Code will all be tested with the following: (comments are expected results) y = 6.5 subMin = np.nextafter(0,1) #subMin =

Implement the following in Python!

image text in transcribed

Code will all be tested with the following: (comments are expected results)

y = 6.5 subMin = np.nextafter(0,1) #subMin = 5e-324 print(sign(y)) #1 print(sign(0.0)) # 0 print(sign(-y)) #-1 print(sign(-0.0)) #0 print(exponent(y)) #2

print(exponent(16.6)) #4 print(fraction(0.0)) #0.0 print(mantissa(y)) #1.625 print(mantissa(0.0) #0.0 var1 = float(nan) print(exponent(var1)) #1024 print(exponent(0.0) #0 print(exponent(subMin)) #-1022 print(is_posinfinity(math.inf)) #True print(is_neginfinity(math.inf)) #False print(not is_posinfinity(-math.inf)) #True print(is_neginfinity(-math.inf)) #True print(ulp(y)) #8.881784197001252e-16 print(ulp(1.0)) #2.220446049250313e-16 print(ulp(0.0)) #5e-324 print(ulp(subMin)) #5e-324 print(ulp(1.0e15)) #0.125 print(ulps(1,2)) #4503599627370496

In this assignment you will write a number of functions that facilitate the use and inspection of floating-point numbers encoded according to IEEE 754. You will only need to provide Python float (double precision) version of the following. Make these efficient as possible. Using bitwise operations is recommended. sign(x) returns 1 if the x is negative, 0 if x is (either positive or negative) zero, 1 if x is positive. exponent (x) returns the unbiased (true) binary exponent of x as a decimal integer. Remember that subnormals are a special case. Consider 0 to be a subnormal. fraction (x) returns the IEEE fractional part of x as a decimal floating-point number. You must convert binary to decimal. The fraction portion does not include the leading 1 that is not stored. mantissa(x) returns the full IEEE mantissa of x as a decimal floating-point number (which is the same as fraction () +1 for normalized numbers; same as fraction () for subnormals). is_posinfinity (x) returns true if x is positive infinity is_neginfinity (x) returns true if x is negative infinity ulp(x) returns the magnitude of the spacing between x and its floating-point successor ulps(x,y) returns the number of intervals between x and y by taking advantage of the IEEE standard You can use pack and unpack in the struct module to convert float type into unsigned integer. You can perform the bitwise operation once you convert the content of a float into unsigned integer

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Excel As Your Database

Authors: Paul Cornell

1st Edition

1590597516, 978-1590597514

More Books

Students also viewed these Databases questions

Question

10.2 Explain how culture affects verbal language.

Answered: 1 week ago

Question

=+8.3(i)). If j is transient, then fi= C PH) /(1+2 Pc)

Answered: 1 week ago