How Are Math Functions Used in Graphic Design

Math Functions in C#

Introduction to Math Functions in C#

The Math library in C# provides developers with various general, trigonometric, statistical, & logarithmic functions and properties in mathematics. This is ready to use, plug and play library. The library inherits from the Object class the super parent class in C#. It resides in the System namespace.

Note: One very important thing to keep in mind is that the properties and methods in Math class are all static, meaning you need not create any object of Math class to invoke them.

C# Math Properties

Let us look at the various mathematical properties in the Math library.

1. E4

E is the logarithmic base, specified by the small letter 'e' in mathematical equations. This static property holds the value of the natural logarithmic base.

Code:

using System;
public class Program
{
public static void Main()
{
Console.WriteLine("The value of logarithmic base E is " + Math.E);
}
}

Output:

output1 math c#

2. PI

Pi, popularly written as the symbol p, is the ratio of the circumference of the circle to the diameter (roughly 3.14). This static constant holds the value of p.

Code:

using System;
public class Program
{
public static void Main()
{
Console.WriteLine("The value of PI is " + Math.PI);
}
}

Output:

output2 math c#

C# Math Functions

Let us look at the various mathematical functions of the C# Math library available at our disposal:

1. Abs-Absolute Function

Returns the absolute value of a given number (integer, decimal, floating-point, etc.). The absolute value of any number is the maximum possible decimal value greater than or equal to 0 but lesser than or equal to the number itself.

Code:

using System;
public class Program
{
public static void Main()
{
int num1 = 231;
double num2 = -1.23456789;
Console.WriteLine("The absolute value of {0} is {1} ", num1,  Math.Abs(num1));
Console.WriteLine("The absolute value of {0} is {1} ", num2,  Math.Abs(num2));
}
}

Output:

output3 maths c#

2. BigMul-Big Multiplication

This Function returns the full multiplication result of two very large integer numbers. It takes two 32 bit integers and returns a 64-bit multiplication result.

Code:

using System;
public class Program
{
public static void Main()
{
int num1 = Int32.MaxValue;
Console.WriteLine("Multiplication of {0}x{0} without Math function - {1}",num1, num1*num1);
Console.WriteLine("Multiplication of {0}x{0} by Math BigMul function - {1}",num1, Math.BigMul(num1, num1));
}
}

Output:

output4 math c#

3. Floor & Ceiling

The floor() and the ceiling() functions return the floor and ceiling values of a specified number. The floor value of any number is the largest integer smaller than or equal to the number itself. The ceiling value of any number is the smallest integer greater than or equal to the number itself.

Code:

using System;
public class Program
{
public static void Main()
{
double num1 = 548.65;
Console.WriteLine("Floor value of {0} is {1}", num1, Math.Floor(num1));
Console.WriteLine("Ceil value of {0} is {1}", num1, Math.Ceiling(num1));
}
}

Output:

output5 math c#

4. Sin, Cos & Tan

These trigonometric functions provide the sine, cosine and tangent value of the specified angle.

Code:

using System;
public class Program
{
public static void Main()
{
double angle = 120.5;
Console.WriteLine("Sine value of {0} is {1}", angle, Math.Sin(angle));
Console.WriteLine("Cosine value of {0} is {1}", angle,Math.Cos(angle));
Console.WriteLine("Tangent value of {0} is {1}", angle, Math.Tan(angle));
}
}

Output:

output6 math c#

5. Sinh, Cosh & Tanh–Hyperbole

These trigonometric functions provide the hyperbolic sine, cosine and tangent value of the specified angle.

Code:

using System;
public class Program
{
public static void Main()
{
double angle = 120.5;
Console.WriteLine("Hyperbolic Sine value of {0} is {1}", angle, Math.Sinh(angle));
Console.WriteLine("Hyperbolic Cosine value of {0} is {1}", angle, Math.Cosh(angle));
Console.WriteLine("Hyperbolic Tangent value of {0} is {1}", angle,Math.Tanh(angle));
}
}

Output:

output 7 math c#

6. Asin, Acos & Atan

These trigonometric functions return the angle to which the specified number is the sine, cosine or tangent value.

Code:

using System;
public class Program
{
public static void Main()
{
double value = 1;
Console.WriteLine("The angle of sin({0}) is {1}", value, Math.Asin(value));
Console.WriteLine("The angle of cos({0}) is {1}", value, Math.Acos(value));
Console.WriteLine("The angle of tan({0}) is {1}", value, Math.Atan(value));
}
}

Output:

output7 math c#

7. DivRem–Division & Remainder

This function calculates the result of a division of two integers. The result is not returned in a fractional value. Rather, the quotient is returned as the return value of the function and the remainder as an output parameter.

Code:

using System;
public class Program
{
public static void Main()
{
int divisor = 8;
int dividend = 45;
int remainder = 0;
int quotient = Math.DivRem(dividend, divisor, out remainder);
Console.WriteLine("{0} divided by {1} results in {2} as the quotient and {3} as the remainder.", dividend, divisor, quotient, remainder);
}
}

Output:

output 8 math c#

8. Exp-Exponential

The exp function returns e to the power of the specified number.

Code:

using System;
public class Program
{
public static void Main()
{
int power = 4;
Console.WriteLine("{0} to the power of {1} is {2}.", Math.E, power, Math.Exp(power));
}
}

Output:

output 9 math c#

9. Log, Log2, & Log10-Logarithm

The log function returns the logarithm of a specified number to a specified base. If no base is specified, the default base is e, resulting in the natural logarithm.

Note: Log2 was introduced in .Net Core. This method is not available in the .Net Framework.

Code:

using System;
public class Program
{
public static void Main()
{
double num1 = 4.5;
int new_base = 12;
Console.WriteLine("Log({0}) to the base 'e' is {1}.", num1, Math.Log(num1));
Console.WriteLine("Log({0}) to the base 10 is {1}.", num1,Math.Log10(num1));
Console.WriteLine("Log({0}) to the base 2 is {1}.", num1,Math.Log(num1, 2));
Console.WriteLine("Log({0}) to the base {1} is {2}.", num1,new_base, Math.Log(num1, new_base));
}
}

Output:

output 10 math c#

10. Min & Max

These functions compare the two numbers provided and return the smaller number or the larger number of the two.

Code:

using System;
public class Program
{
public static void Main()
{
double num1 = 4.5;
double num2 = -3.4;
int num3 = 981;
int num4 = 123;
Console.WriteLine("Minimum of {0} and {1} is {2}.", num1, num2,Math.Min(num1, num2));
Console.WriteLine("Maximum of {0} and {1} is {2}.", num1, num2,Math.Max(num1, num2));
Console.WriteLine("Minimum of {0} and {1} is {2}.", num3, num4,Math.Min(num3, num4));
Console.WriteLine("Maximum of {0} and {1} is {2}.", num3, num4,Math.Max(num3, num4));
}
}

Output:

output11

11. Pow-Power

The pow() function returns the specified number to the specified power.

Code:

using System;
public class Program
{
public static void Main()
{
int num1 = 11;
double num2 = 3.4;
Console.WriteLine("{0} to the power {1} is {2}.", num1, num2, Math.Pow(num1, num2));
Console.WriteLine("The cube of {0} is {1}.", num1, Math.Pow(num1, 3));
}
}

Output:

output 12

12. Round

The round() function, as the name suggests, rounds the specified number to the nearest integer or specified decimal places after the integer.

There are a few important variations of round() function. It takes either two or three arguments.

  1. The first argument is the number to be rounded.
  2. The second argument is the number of digits after the decimal point. If this is not specified, the number is rounded to the nearest integer.
  3. The third argument is the mode of rounding. This is an enumeration of two values derived accessed from the enum MidpointRounding.

The two modes are:

  • AwayFromZero: When a number falls halfway between two numbers, it is rounded to the nearest number which is farther from zero.
  • ToEven: When a number falls halfway between two numbers, it is rounded to the nearest even number.

If not specified, the mode AwayFromZero is the default mode.

Code:

using System;
public class Program
{
public static void Main()
{
double num1 = 2.45;
double num2 = 24.5;
Console.WriteLine("{0} rounded to the nearest integer is {1}", num1, Math.Round(num1));
Console.WriteLine("{0} rounded to the nearest single-point decimal is {1}", num1, Math.Round(num1, 1));
Console.WriteLine("{0} rounded to the nearest single-point decimal away from zero is {1}", num1, Math.Round(num1, 1, MidpointRounding.AwayFromZero));
Console.WriteLine("{0} rounded to the nearest single-point decimal to even is {1}", num1, Math.Round(num1, 1, MidpointRounding.ToEven));
Console.WriteLine("\n{0} rounded to the nearest integer away from zero is {1}", num2, Math.Round(num2, MidpointRounding.AwayFromZero));
Console.WriteLine("{0} rounded to the nearest integer to even is {1}", num2, Math.Round(num2, MidpointRounding.ToEven));
}
}

Output:

output 13

13. Sqrt-Square Root

This function returns the square root of the given number.

Code:

using System;
public class Program
{
public static void Main()
{
int num1 = 196;
double num2 = 404.1;
Console.WriteLine("Square root of {0} is {1}.", num1,Math.Sqrt(num1));
Console.WriteLine("Square root of {0} is {1}.", num2, Math.Sqrt(num2));
}
}

Output:

output14

14. Truncate

The truncate function returns an integral part of the specified number. So, in simple terms, it discards anything after the decimal point and returns everything before the decimal point.

Note: Note that this is different from Round function. The round function returns an integer nearest to the number. It may be an integer greater than the number itself. Whereas, Truncate function would always return the integer part of the number as is. E.g. – Round(4.9) results in 5. Truncate(4.9) results in 4.

Code:

using System;
public class Program
{
public static void Main()
{
double num1 = 404.92;
Console.WriteLine("Truncated value of {0} is {1}.", num1, Math.Truncate(num1));
Console.WriteLine("Rounded-off value of {0} is {1}.", num1, Math.Round(num1));
}
}

Output:

output 15

Conclusion

This article covered almost all the mathematical functions provided in the C# Math library. This library proves to be very useful due to the plug-n-play mathematical properties and functions, thereby making development easier.

Recommended Articles

This is a guide to Math Functions in C#. Here we discuss the properties and function in math function c# with proper codes and outputs. You can also go through our other related articles to learn more-

  1. JavaScript Math Functions
  2. PHP Math Functions
  3. Square Root in PHP
  4. ceil function in C++

How Are Math Functions Used in Graphic Design

Source: https://www.educba.com/math-functions-in-c-sharp/

0 Response to "How Are Math Functions Used in Graphic Design"

Mag-post ng isang Komento

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel