관리 메뉴

bright jazz music

Numpy 본문

Language/python

Numpy

bright jazz music 2022. 5. 28. 11:02

 

 

 

 

 

import numpy as np
import matplotlib.pyplot as plt

ftemp = [63, 73, 80, 86, 84, 78, 66, 54, 45, 63] #파이썬의 리스트

F = np.array(ftemp) #파이썬 리스트를 numpy 배열 객체로 생성해라


C = 5 / 9 * (F - 32)




print(type(F))
print(F)
print(C)
plt.plot(C)
plt.show()

 

 

 

 

 

 

#2차원 배열

import numpy as np

nums = np.array([[1,2,3], [4,5,6], [7,8,9]])

print(nums)
print(nums[0][2]) #3 출력



#   [[1 2 3]
#    [4 5 6]
#    [7 8 9]]
#   3

 

 

 

 

 

'Language > python' 카테고리의 다른 글

GUI 예제  (0) 2022.05.24
파이썬 클래스 생성자 과제  (0) 2022.05.15
튜플  (0) 2022.04.30
복합자료형(compound data type):리스트  (0) 2022.04.30
반복문 과제  (0) 2022.04.23
Comments