Displaying 1 result from an estimated 1 matches for "temp100".
Did you mean:
temp10
2012 Mar 27
0
sampling matrix 1 conditional on values in matrix 2
....25 x 0.25 degree resolution
##temp at 10m
y<-seq(15,20,by=.01)
y1<-sample(y,81)
temp10<-matrix(y1,nrow=9)
templong<-seq(149,151,by=.25)
templat<-seq(-37,-35,by=.25)
colnames(temp10)<-templat
rownames(temp10)<-templong
##temp at 100m
y<-seq(10,15,by=.01)
y1<-sample(y,81)
temp100<-matrix(y1,nrow=9)
colnames(temp100)<-templat
rownames(temp100)<-templong
##temp at 200m
y<-seq(2,10,by=.01)
y1<-sample(y,81)
temp200<-matrix(y1,nrow=9)
colnames(temp200)<-templat
rownames(temp200)<-templong
###temperature data is available in the form of lists of geo-refe...