numpy - hypot, pad, ogrid
hypot ; hypotenuse(빗변) numpy.hypot(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) = np.hypot(3*np.ones((3, 3)), 4*np.ones((3, 3))) array([[ 5., 5., 5.], [ 5., 5., 5.], [ 5., 5., 5.]]) pad(array, pad_width, mode='constant', **kwargs) # 위쪽 3개행, 아래쪽 2개행, 왼쪽 2개열, 오른족 3개열 0으로 패딩합니다 a = [[3, 2], [2, 3]] np.pad(a, ((3, 2), (2, 3)), 'mini..
2022. 9. 21.