Mercurial > hg > cc > cirrus_work
view bin/spearman.sh @ 180:a20cf98f3a77
rename to avoid name clash with scipy.stats
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Sun, 26 Nov 2023 21:24:38 +0000 |
parents | 7ffb686ca060 |
children |
line wrap: on
line source
#!/usr/bin/bash matlab -batch '%' <<EOF disp("running") m=load("$1"); [r,p]=corr(m,'Type','Spearman') disp(r) disp(p) EOF