Programming

Elbow Method for k-means

Translations: JA
Implemented the elbow method in C++ to estimate the number of clusters for k-means and verified its behavior.

k-means++

Translations: JA
Implemented k-means++, an improved version of the k-means algorithm, in C++ and verified its behavior.

Implemented k-means in C++

Translations: JA
Explored the behavior of k-means, perhaps the most well-known clustering algorithm, by implementing it in C++.

It’s Okay to Use #pragma once

Translations: JA
#pragma once is non-standard, but it has an advantage. It’s OK to use this.

Gray code

Translations: JA
An overview of Gray code.

How to Use FFT (NumPy, SciPy)

Translations: JA
Explains how to use FFT, one of the basic tools in signal processing.