Rational Class : Math « Development Class « C# / C Sharp






Rational Class

        
using System;

namespace Grinder.Exif
{

    #region Rational Class
    internal sealed class Rational
    {
        private readonly Int32 _num;
        private readonly Int32 _denom;

        public Rational(byte[] bytes)
        {
            var n = new byte[4];
            var d = new byte[4];
            Array.Copy(bytes, 0, n, 0, 4);
            Array.Copy(bytes, 4, d, 0, 4);
            _num = BitConverter.ToInt32(n, 0);
            _denom = BitConverter.ToInt32(d, 0);
        }

        public double ToDouble()
        {
            return Math.Round(Convert.ToDouble(_num) / Convert.ToDouble(_denom), 2);
        }

        public string ToString(string separator)
        {
            return _num + separator + _denom;
        }

        public override string ToString()
        {
            return ToString("/");
        }
    }
    #endregion

    #region Rational Class
    internal sealed class URational
    {
        private readonly UInt32 _num;
        private readonly UInt32 _denom;

        public URational(byte[] bytes)
        {
            var n = new byte[4];
            var d = new byte[4];
            Array.Copy(bytes, 0, n, 0, 4);
            Array.Copy(bytes, 4, d, 0, 4);
            _num = BitConverter.ToUInt32(n, 0);
            _denom = BitConverter.ToUInt32(d, 0);
        }

        public double ToDouble()
        {
            return Math.Round(Convert.ToDouble(_num) / Convert.ToDouble(_denom), 2);
        }

        public override string ToString()
        {
            return ToString("/");
        }

        public string ToString(string separator)
        {
            return _num + separator + _denom;
        }
    }
    #endregion

    #region Rational Class
    internal sealed class GPSCoordinate
    {
        private readonly Rational _hours;
        private readonly Rational _minutes;
        private readonly Rational _seconds;

        public double Hours
        {
            get
            {
                return _hours.ToDouble();
            }            
        }
        public double Minutes
        {
            get
            {
                return _minutes.ToDouble();
            }            
        }
        public double Seconds
        {
            get
            {
                return _seconds.ToDouble();
            }            
        }

        public GPSCoordinate(byte[] bytes)
        {
            var h = new byte[8];
            var m = new byte[8];
            var s = new byte[8];

            Array.Copy(bytes, 0, h, 0, 8); Array.Copy(bytes, 8, m, 0, 8); Array.Copy(bytes, 16, s, 0, 8);

            _hours = new Rational(h);
            _minutes = new Rational(m);
            _seconds = new Rational(s);
        }

        public TimeSpan ToTimeSpan()
        {
            return new TimeSpan((int)Hours, (int)Minutes, (int)Seconds);
        }

        public override string ToString()
        {
            return _hours.ToDouble() + " "
                + _minutes.ToDouble() + "\' "
                + _seconds.ToDouble() + "\"";
        }

        public string ToString(string separator)
        {
            return _hours.ToDouble() + separator
                + _minutes.ToDouble() + separator +
                _seconds.ToDouble();
        }
    }
    #endregion

}

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.Demonstrate Math.Sin(), Math.Cos(), and Math.Tan(). Demonstrate Math.Sin(), Math.Cos(), and Math.Tan().
2.Find the radius of a circle given its area. Find the radius of a circle given its area.
3.Math operators
4.Use Math.Round
5.Math.Sign
6.Math.Abs
7.Math.Min
8.Converts a degrees angle into a radians angle.
9.Converts a radians angle into a degrees angle.
10.Converts degrees to radians.
11.Gets the mean value from a list
12.Gets the median from the list
13.Gets the standard deviation
14.Statistical functions: Mean
15.Statistical functions: Standard Deviation
16.The Method converts the temperature in Fahrenheit to Celcius
17.The Method converts the temperature in Celcius to Fahrenheit
18.Returns the maximum value of three numbers
19.Returns the minimum value of three numbers
20.rounds val to the nearest fractional value
21.Combines two input numbers in some proportion.
22.Normalise Angle
23.wraps the mod result to avoid negative results.
24.Method that calculates the Greatest Common Divisor (GCD) of two positive integer numbers.
25.Calculates the floor of the log, base 2, of 'x'.
26.Calculates the Least Common Multiple (LCM) of two strictly positive integer numbers.
27.Get Prime, Is prime
28.Same as System.Math.Acos but if angle is out of range, the result is clamped.
29.Math.Abs returns the absolute value of a Decimal number.
30.Math.Acos
31.Math.Asin returns the angle whose sine is the specified number.
32.Math.Atan Returns the angle whose tangent is the specified number.
33.Math.Atan2 Returns the angle whose tangent is the quotient of two specified numbers.
34.Math.BigMul Produces the full product of two 32-bit numbers.
35.Math.Ceiling Returns the smallest integral value that is greater than or equal to the specified decimal number.
36.Math.Cos Returns the cosine of the specified angle.
37.Math.Cosh returns the hyperbolic cosine
38.Math.DivRem calculates the quotient of integers and returns the remainder in an output parameter.
39.Math.E Field Represents the natural logarithmic base, specified by the constant, e.
40.Math.Exp returns e raised to the specified power.
41.Math.Floor returns the largest integer less than or equal to the specified decimal number.
42.Math.IEEERemainder returns the remainder resulting from the division
43.Math.Log Method returns the natural (base e) logarithm of a specified number.
44.Math.Log Method returns the logarithm of a specified number in a specified base.
45.Math.Log10 Method returns the base 10 logarithm of a specified number.
46.Math.Max Method returns the larger of two 8-bit unsigned integers.
47.Math.Min Method returns the smaller of two 8-bit unsigned integers.
48.Math.PI Field represents the ratio of the circumference of a circle to its diameter,
49.Math.Pow Method returns a specified number raised to the specified power.
50.Math.Round Method rounds a decimal value to the nearest integral value.
51.Math.Sign Method returns a value indicating the sign of a decimal number.
52.Math.Sinh Method returns the hyperbolic sine of the specified angle.
53.Math.Sqrt Method returns the square root of a specified number.
54.Math.Tan Method returns the tangent of the specified angle.
55.Math.Tanh Method returns the hyperbolic tangent of the specified angle.
56.Math.Truncate calculates the integral part of a specified decimal number.
57.double extension method for Radian/Degree conversion
58.Prime Number Utility
59.Fibonacci number
60.Almost equal and Epsilon
61.Is Value in the range
62.Angle Utility
63.Factorial value
64.Mean value
65.Get BMI
66.Conver Kg To Lb
67.Generic Max Min
68.Knuth shuffle
69.Calculate Distance between two points
70.Mesh Utilities
71.Generic Pair
72.Permutation demo
73.Calculate Variance
74.The normdist