Skip to content

Instantly share code, notes, and snippets.

View Spiderixius's full-sized avatar
💭
I don't actually look angry like Kratos.

Admir Spiderixius

💭
I don't actually look angry like Kratos.
View GitHub Profile
@Spiderixius
Spiderixius / infosec_newbie.md
Created January 23, 2019 06:00 — forked from mubix/infosec_newbie.md
How to start in Infosec
@Spiderixius
Spiderixius / peakdet.m
Created February 5, 2019 07:39 — 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.