2012-12-14 82 views

回答

5

這樣:

foo <- matrix(c(1,2,-Inf,3),nrow=2,ncol=2) 
min(foo[foo>-Inf]) 
[1] 1 
3
min(foo[ is.finite(foo) ] #... 
相關問題