import matplotlib.pyplot as plt
x_pos = np.linspace(0,5,10)
y_pos = np.linspace(0,10,10)
x_dir = y_dir = np.zeros((10,10))
plt.quiver(x_pos, y_pos, x_dir, y_dir, scale=1)
\begin{algorithm}\caption{Test}\begin{algorithmic}[1]\State Hello!\end{algorithmic}\end{algorithm}
\floatname{algorithm}{Procedure}
15 duplicate symbols for architecture x86_64
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
std::vector<std::string> stringVector{"abcde", "fghij", "klmno", "pqrst", "uvwxyz"};byte digest[SHA256::DIGESTSIZE];SHA256().CalculateDigest(digest, (const byte*)stringVector.data(), stringVector.size());
std::vector<std::string> stringVector{"abcde", "fghij", "klmno", "pqrst", "uvwxyz"};HexEncoder encoder(new FileSink(std::cout));
std::string digest;
SHA256 hash;for(auto str: stringVector) {
hash.Update((const byte*)str.data(), str.size());
}digest.resize(hash.DigestSize());
hash.Final((byte*)&digest[0]);std::cout << "Digest: ";
StringSource(digest, true, new Redirector(encoder));
std::cout << std::endl;