This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function out=read_dsv(pathname) | |
% Read a Siemens IDEA DSV folder as simulated by POET, for subsequent plotting. | |
% This just parses a pre-existing text file and plonks it into a struct. | |
% | |
% Input: a POET-simulated folder containing .dsv files (check your temp | |
% files in an IDEA VM) | |
% | |
% Output: a returned structure containing the parsed contents present. | |
% | |
% Should you wish to plot a pulse sequence diagram, you probably want to |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -eu | |
create_iconset() { | |
mkdir -p Ghidra.iconset | |
cat << EOF > Ghidra.iconset/Contents.json | |
{ | |
"images": | |
[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
% Matlab code to produce PCA animations shown here: | |
% http://stats.stackexchange.com/questions/2691 | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
% Static image | |
clear all | |
rng(42) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
- Hotfoot is Columbia's shared Astronomy-Statistics supercomputing | |
cluster. | |
- Emcee is a kick-ass MCMC black-box for sampling probability | |
distributions & parameter estimation. | |
- MPI is a standardized message passing system designed for supporting | |
and running parallel code. | |
Emcee is an implementation of an affine-invariant, ensemble sampler -- | |
key words here being *ensemple sampler*. The algorithm runs an ensemble |