2011-03-21 86 views
1

之間的矩陣的元素是否有任何的代碼來選擇區間(區間之間的矩陣中的所有元素是:?min(data[,1])min(data[,dim(data)[2]]))例如,數據是這樣的:選擇間隔

> data <- matrix(c(58,47,40,42,38,22,53,43,36,62,51,44),byrow=T,ncol=3) 

的選擇的元素應該是:22,36,38,40,42。
非常感謝提前。

回答

3

鑑於您希望所有元素在第一列的最小值和最後一列的最小值之間,您可以直接索引矩陣:

dat <- matrix(c(58, 47, 40, 42, 38, 22, 53, 43, 36, 62, 51, 44), byrow = TRUE, ncol = 3) 

## grab the two values and sort them (assumes there are no missing values) 
## using ncol() is a bit neater than dim(x)[2] for a matrix 
minmax <- sort(c(min(dat[,1]), min(dat[,ncol(dat)]))) 

## subset by direct indexing (as if dat were a vector) 
res <- dat[dat >= minmax[1] & dat <= minmax[2]] 

## sort the result 
sort(res) 
[1] 22 36 38 40 42 

我打電話給我的矩陣「DAT」,而不是「數據」,因爲這是在R的功能

+0

非常感謝你。 – lyn 2011-03-21 05:07:02