The use of Python's ASIN () method for computing trigonometric functions

Source: Internet
Author: User
Tags asin
The ASIN () method returns the sine of the X, expressed in radians.
Grammar

The following is the ASIN () method syntax:

ASIN (x)

Note: This function is not directly accessible, so we need to import the math module and then call this function with the static object of math.
Parameters

  • X-This must be within the range of a numeric value of 1 to 1, and if X is greater than 1, it will produce an error.

return value

This method returns the X-anyway chord, expressed in radians.
Example

The following example shows the use of the ASIN () method.

#!/usr/bin/pythonimport Mathprint "ASIN (0.64):", Math.asin (0.64) print "ASIN (0):", Math.asin (0) print "ASIN ( -1):", Mat H.asin ( -1) print "ASIN (1):", Math.asin (1)

When we run the above program, it produces the following results:

ASIN (0.64): 0.694498265627asin (0): 0.0asin ( -1): -1.57079632679asin (1): 1.57079632679
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.