Skip to content
Snippets Groups Projects
Commit d628cf8b authored by Samuel Mondy's avatar Samuel Mondy
Browse files

Update Ten_max.r

parent e80380a4
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ Ten_max<-function(ref,index=20)
vref<-c()
for(i in 1:dim(ref)[2])
{
seuil<-sort(ref[,i],decreasing=T)[index+1]
seuil<-as.numeric(sort(ref[,i],decreasing=T)[index+1])
temp<-which(ref[,i]>seuil)
vref<-unique(c(vref,temp))
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment