Mercurial > hg > cc > cirrus_work
view bin/spearman.sh @ 119:1d12b51c4d59
minor bug wrt EOF of final cdx input file
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Wed, 27 Sep 2023 17:29:51 +0100 |
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