view bin/spearman.sh @ 271:ac367fc4b562

towards a real test of cdb
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Wed, 12 Feb 2025 11:29:41 +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