Mercurial > hg > cc > cirrus_work
view bin/spearman.sh @ 212:1728baad6540
see Paul:Documents/HTalks/WebSci2024
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Thu, 15 Feb 2024 15:10:34 +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