Using MDX and LaTeX
Testing MDX and Latex.
Code Snippets
import numpy as np
def gaussian(x, mu, sigma):
return (1.0 / (np.sqrt(2 * np.pi) * sigma)) * \
np.exp(-((x - mu)**2) / (2 * sigma**2))
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
Mathematical Equations
We can render beautiful equations using . For example, the Gaussian integral:
Or the Schrödinger equation: