I Python inneholder matematikkmodulen en rekke matematiske operasjoner, som enkelt kan utføres ved hjelp av modulen. math.cos()>funksjonen returnerer cosinus av verdi som er sendt som argument. Verdien som sendes i denne funksjonen skal være i radianer.
Syntaks: math.cos(x)
Parameter:
x : verdi som skal sendes til cos()
Returnerer: Returnerer cosinus av verdi sendt som argument
Kode #1:
tilfeldig tall mellom 1 og 10
# Python code to demonstrate the working of cos()> > # importing 'math' for mathematical operations> import> math> > a>=> math.pi>/> 6> > # returning the value of cosine of pi / 6> print> (>'The value of cosine of pi / 6 is : '>, end>=>'')> print> (math.cos(a))> |
>
>Produksjon:
The value of cosine of pi/6 is : 0.8660254037844387>
Kode #2:
t ff
# Python program showing> # Graphical representation of> # cos() function> import> math> import> numpy as np> import> matplotlib.pyplot as plt> > in_array>=> np.linspace(>->(>2> *> np.pi),>2> *> np.pi,>20>)> > out_array>=> []> > for> i>in> range>(>len>(in_array)):> >out_array.append(math.cos(in_array[i]))> >i>+>=> 1> > > print>(>'in_array : '>, in_array)> print>(>'
out_array : '>, out_array)> > # red for numpy.sin()> plt.plot(in_array, out_array, color>=> 'red'>, marker>=> 'o'>)> plt.title(>'math.cos()'>)> plt.xlabel(>'X'>)> plt.ylabel(>'Y'>)> plt.show()> |
>
>Produksjon:
in_array : [-6.28318531 -5.62179738 -4.96040945 -4.29902153 -3.6376336 -2.97624567
-2,31485774 -1,65346982 -0,99208189 -0,33069396 0,33069396 0,99208189
1,65346982 2,31485774 2,97624567 3,6376336 4,29902153 4,96040945
5.62179738 6.28318531]Out 0.08257934547233249, 0.5469481581224268, 0.9458172417006346, 0.9458172417006346, 0.54694815812242688, sprog. 57405, -0.9863613034027223, -0.8794737512064893, -0.40169542465296987, 0.2454854871407988, 0.78914050748548714079888, 0.7891405050748548714079888, 0.7891405050505053934348714079888, 0.78987, 0.24548548714079888, 0.78787, 0.24548548714079888, 0.78987, 0.24548548714079888, 0.78787. , 1,0]
