Skip to content

Instantly share code, notes, and snippets.

View rezwanh001's full-sized avatar
🎯
Focusing

Md. Rezwanul Haque rezwanh001

🎯
Focusing
View GitHub Profile
@rezwanh001
rezwanh001 / peakdet.m
Created October 27, 2018 15:36 — forked from endolith/peakdet.m
Peak detection in Python [Eli Billauer]
function [maxtab, mintab]=peakdet(v, delta, x)
%PEAKDET Detect peaks in a vector
% [MAXTAB, MINTAB] = PEAKDET(V, DELTA) finds the local
% maxima and minima ("peaks") in the vector V.
% MAXTAB and MINTAB consists of two columns. Column 1
% contains indices in V, and column 2 the found values.
%
% With [MAXTAB, MINTAB] = PEAKDET(V, DELTA, X) the indices
% in MAXTAB and MINTAB are replaced with the corresponding
% X-values.
@rezwanh001
rezwanh001 / dft.py
Last active October 13, 2020 16:25 — forked from bellbind/dft.py
[python]DFT(discrete fourier transform) and FFT
"""DFT and FFT"""
import math
def iexp(n):
return complex(math.cos(n), math.sin(n))
def is_pow2(n):
return False if n == 0 else (n == 1 or is_pow2(n >> 1))
def dft(xs):