Python
 Computer >> コンピューター >  >> プログラミング >> Python

Pythonで角度の三角関数の正弦を取得します


三角関数の正弦を見つけるには、Python Numpyのnumpy.cos()メソッドを使用します。このメソッドは、最初のパラメーターxの各要素の正弦を返します。最初のパラメーターxは、角度、インラジアン(2piは360度を意味します)です。 2番目と3番目のパラメーターはオプションです。 2番目のパラメーターは、結果が格納される場所であるanndarrayです。

提供する場合は、入力がブロードキャストする形状である必要があります。指定しない場合またはNoneの場合、新しく割り当てられた配列が返されます。タプル(キーワード引数としてのみ可能)の長さは、出力の数と同じである必要があります。

3番目のパラメーターは、条件が入力を介してブロードキャストされることです。条件がTrueの場所では、out配列がufunc結果に設定されます。他の場所では、out配列は元の値を保持します。

ステップ

まず、必要なライブラリをインポートします-

import numpy as np

三角関数の正弦を取得します。正弦波を見つける90度-

print("\nResult...",np.cos(np.pi/2.))

正弦波を見つける60度-

print("\nResult...",np.cos(np.pi/3.))

正弦45度を見つける-

print("\nResult...",np.cos(np.pi/4.))

正弦波を見つける30度-

print("\nResult...",np.cos(np.pi/6.))

正弦波0度を見つける-

print("\nResult...",np.cos(0))

import numpy as np

# To find the Trigonometric cosine, use the numpy.cos() method in Python Numpy
# The method returns the sine of each element of the 1st parameter x. This is a scalar if is a scalar.

print("Get the Trigonometric cosine...")

# finding cosine 90 degrees
print("\nResult...",np.cos(np.pi/2.))

# finding cosine 60 degrees
print("\nResult...",np.cos(np.pi/3.))

# finding cosine 45 degrees
print("\nResult...",np.cos(np.pi/4.))

# finding cosine 30 degrees
print("\nResult...",np.cos(np.pi/6.))

# finding cosine 0 degrees
print("\nResult...",np.cos(0))

出力

Get the Trigonometric cosine...

Result... 6.123233995736766e-17

Result... 0.5000000000000001

Result... 0.7071067811865476

Result... 0.8660254037844387

Result... 1.0

  1. PythonPandas-MultiIndexでレベルの名前を取得する

    MultiIndexのレベルの名前を取得するには、 MultiIndex.namesを使用します パンダのプロパティ。まず、必要なライブラリをインポートします- import pandas as pd MultiIndexは、パンダオブジェクトのマルチレベルまたは階層的なインデックスオブジェクトです。配列を作成する- arrays = [[1, 2, 3, 4, 5], ['John', 'Tim', 'Jacob', 'Chris', 'Keiron']] 「names」パラメーターは、各インデックスレベル

  2. Python –列のデータ型を取得します

    列のデータ型を取得するには、info()メソッドを使用します。まず、必要なライブラリをインポートしましょう- import pandas as pd 異なるデータ型を持つ2つの列を持つDataFrameを作成します- dataFrame = pd.DataFrame(    {       "Student": ['Jack', 'Robin', 'Ted', 'Marc', 'Scarlett', 'Kat', 'Jo