最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

快速傅里葉變換(fft)

2023-03-01 12:53 作者:letUsSkate  | 我要投稿


以下是python代碼實現(xiàn):

```python

from cmath import pi, exp

def fft(coefficients, w):

? ? n = len(coefficients)? # n的值一定是一個偶數(shù)


? ? # 如果只有一個值,那么將這個值返回

? ? if n == 1:

? ? ? ? return coefficients


? ? coefficients_even = []? # 偶數(shù)項系數(shù)

? ? coefficients_odd = []? # 奇數(shù)項系數(shù)


? ? for i in range(0, n // 2):

? ? ? ? coefficients_even.append(coefficients[2 * i])

? ? ? ? coefficients_odd.append(coefficients[2 * i + 1])


? ? y_even, y_odd = fft(coefficients_even, w ** 2), fft(coefficients_odd, w ** 2)


? ? current_x = 1? # 默認values上的第i個坐標上的值是第i個單位根上對應的y值, 所以第一個值為1

? ? values = [0 for _ in range(n)]


? ? # 分別計算每一個點對應當前函數(shù)的對應的值

? ? for i in range(0, n // 2):

? ? ? ? values[i] = y_even[i] + current_x * y_odd[i]

? ? ? ? values[i + n // 2] = y_even[i] - current_x * y_odd[i]

? ? ? ? current_x = current_x * w? # 計算下一個x的值


? ? return values



def solver_fft(coefficient_a: list, coefficient_b: list):

? ? # 填充0,將a和b的長度擴展為2的次數(shù)

? ? min_coefficient_count = len(coefficient_a) + len(coefficient_b) - 1

? ? exponent_value = 1

? ? while 2 ** exponent_value < min_coefficient_count:

? ? ? ? exponent_value += 1

? ? coefficient_count = 2 ** exponent_value

? ? # 擴展系數(shù)值

? ? coefficient_a.extend([0 for _ in range(coefficient_count - len(coefficient_a))])

? ? coefficient_b.extend([0 for _ in range(coefficient_count - len(coefficient_b))])


? ? # 計算當前單位根的間距,也就是每一個相鄰單位根的插值

? ? w = exp(2 * pi * 1j / coefficient_count)

? ? a_values = fft(coefficient_a, w)

? ? b_values = fft(coefficient_b, w)

? ? a_times_b_values = [a_values[i] * b_values[i] for i in range(coefficient_count)]


? ? # 逆向傅里葉變化,將點值對轉(zhuǎn)換為系數(shù)

? ? result = [round((x / coefficient_count).real) for x in fft(a_times_b_values, w ** -1)]


? ? # 將末尾不必要的0進行刪除

? ? while result[-1] == 0:

? ? ? ? del result[-1]

? ? return result



print(solver_fft([1, 5, 3, 2], [10, 3, 0, 0, 0, 1]))

# [10, 53, 45, 29, 6, 1, 5, 3, 2]

```

*參考:*

*1、<python算法設計和分析>*

*2、The Fast Fourier Transform (FFT): Most Ingenious Algorithm Ever? - YouTube*

快速傅里葉變換(fft)的評論 (共 條)

分享到微博請遵守國家法律
宜城市| 柳州市| 海宁市| 普兰县| 皋兰县| 勐海县| 冷水江市| 宜春市| 虹口区| 青州市| 双城市| 沿河| 陆良县| 剑阁县| 惠东县| 呼图壁县| 汤阴县| 特克斯县| 横峰县| 福泉市| 岫岩| 耿马| 循化| 梅河口市| 施甸县| 二连浩特市| 玉树县| 潢川县| 黎川县| 交城县| 子长县| 筠连县| 赤水市| 大洼县| 若羌县| 江阴市| 运城市| 温宿县| 民县| 吉水县| 大理市|