search for: stn

Displaying 20 results from an estimated 38 matches for "stn".

Did you mean: sti
2009 Nov 03
3
Weird operator behaviour
...PHC PHC [325] PHC PHC PHC POS POS POS POS POS POS POS POS POS POS POS PTO PTO PTO PTO [343] PTO PTO PTO PTO PTO PTO PTO PTO PTO PTO PTO RBM RBM RBM RBM RBM RBM RBM [361] RBM RBM RBM RBM RBM RBM RBM RBM SKJ SKJ SKJ SKJ SKJ SKJ SKJ SKJ SKJ SKJ [379] SKJ SKJ SKJ SKJ SKJ STM STM STM STM STM STM STM STM STN STN STN STN STN [397] STN STN STN STN STN STN STN STN STN STN STN STN STN STN STN STN STN STN [415] SWO SWO SWO SWO SWO SWO SWO SWO SWO SWO SWO SWO SWO SWO SWO SWO TOR TOR [433] TOR TOR TOR TOR TOR TOR YFN YFN YFN YFN YFN YFN YFN YFN YFN YFN YFN YFN [451] YFN YFN YFN YFN 17 Levels: ALB ATO BIG BWS...
2009 Jul 27
6
Superscripts and rounding
...e numbers from the data set for longitude and latitude to be rounded to four decimal places. Thank you. plot ( decade[['date']], decade[['value']], type = 'l', col = 'lightsteelblue4', ylab = 'Discharge [cms]', main = sprintf('%s [%s]', stn[['metadata']][['name']], stn[['metadata']][['id']]), km^2 <- expression sub = sprintf('Seasonal station with natural streamflow - Lat: %s Lon: %s Gross Area %s km^2 - Effective Area %s km^2', stn[['metadata']][['latitude']],...
2002 Jan 16
2
Subsetting data frames without a loop
...tuck. My data frame consists of multiple observations from each of a number of stations, and what I would like to do is create another data frame that contains all the variables of the first, but only rows where a certain variable is at its maximum for the station. So, for example: > my.df stn obs v 1 1 1 0.26400396 2 2 1 -0.79194397 3 3 1 0.11924528 4 4 1 0.42596859 5 5 1 -0.50528235 6 1 2 -1.57524853 7 2 2 0.17762482 8 3 2 -0.83013770 9 4 2 -0.53203400 10 5 2 -2.71397275 11 1 3 0.26902053 12 2 3 2.01147908 13 3...
2011 Feb 16
1
Timeseries Data Plotted as Monthly Boxplots
...o, I'm trying to develop a box plot of time series data to look at the range in the data values over the entire period of record. My data initially starts out as a list of hourly data, and then I've been using this code to make this data into the final ts array. # Read in the station list stn.list <- read.csv("/home/kbennett/fews/stnlist3", as.is=T, header=F) # Read in all three variables. vars <- c("MAT", "MAP", "MAP06") for (stn in stn.list) { for (v in 1:length(vars) { # Read in year month start and end dates table & name it...
2015 May 05
2
[LLVMdev] [AArch64] Should we restrict to the pointer type used in ldN/stN intrinsics?
Hi, The ldN like intrinsics (including all the ld1xN, ldN, ldNlane, ldNr, stN, stNlane) can use any pointer types. The definition (in IntrinsicsAArch64.td) of such intrinsics use 'LLVMAnyPointerType', which means we can pass any pointer type to such intrinsics. E.g. I tried following case ld2.ll: define { <4 x i32>, <4 x i32> } @test(float* %ptr) {...
2011 Dec 03
2
Downloading tab separated data from internet
...he required page. For example, I want to download data for a station 03015795. The form for this station is at: http://ida.water.usgs.gov/ida/available_records.cfm?sn=03015795 I could get the start date and end date from this form using: # # Specifying station and reading from the opening form stn<-"03015795" myurl<-paste("http://ida.water.usgs.gov/ida/available_records.cfm?sn=",stn,sep="") mypage1 = readLines(myurl) # Getting the start and end dates mypattern = '<td align="center">([^<]*)</td>' datalines = grep(mypattern,...
2008 Jul 28
1
loop does not work
...************* datafile <- read.csv(file="all_stations_24h_at_rh_0701-0718.csv",head=TRUE,sep=",") #-------------build maxima vector---------------- maxima<-mat.or.vec(132,18) Temp<-mat.or.vec(1,24) regions<-levels(datafile$Region) stations<-levels(factor(datafile$Stn.Id)) days<-levels(datafile$Date) i=1 j=1 while(i<length(stations)) { while (j<length(days) { print(j) print(days[j]) #Temp <- as.numeric(levels(subset(datafile$Air.Temp...F., datafile$Stn.Id==stations[i] & datafil...
2016 Oct 10
2
[arm, aarch64] Alignment checking in interleaved access pass
Hi Renato, Thank you for the answers! First, let me clarify a couple of things and give some context. The patch it looking at VSTn, rather than VLDn (stores seem to be somewhat harder to get the "right" patterns, the pass is doing a good job for loads already) The examples you gave come mostly from loop vectorization, which, as I understand it, was the reason for adding the interleaved access pass. I'm looking a...
2016 Oct 10
2
[arm, aarch64] Alignment checking in interleaved access pass
On Mon, Oct 10, 2016 at 1:14 PM, Renato Golin <renato.golin at linaro.org> wrote: > On 10 October 2016 at 19:39, Alina Sbirlea <alina.sbirlea at gmail.com> > wrote: > > Now, for ARM archs Halide is currently generating explicit VSTn > intrinsics, > > with some of the patterns I described, and I found no reason why Halide > > shouldn't generate a single shuffle, followed by a generic vector store > and > > rely on the interleaved access pass to generate the right intrinsic. > > IIRC, the shuffl...
2012 Apr 30
2
for loop problem
...-15 ... 1999, 12, 31, -21 I would like to add another variable "JULIAN" that assigns the integers 1 to 365 (and 1 to 366 for leap years) for each day of a year over multiple years. Here is what I came up with: counter<-1 for(i in 1:12){ for (j in 1:31){ df$JULIAN[df$MONTH==i & stn$DAY==j]<- counter counter<-counter+1 } } R does it exactly what I told it to but I am not satisfied with it since it doesn't stop assigning the integers when months have 28, 29 or 30 days. For instance on Feb-28 JULIAN is 59 and on March-1 it's 64, as opposed to be 60. I am assuming...
2002 Oct 21
3
AW: user root is not accepted anymore
..."Andreas Lindenbauer" <andreas.lindenbauer@Sal To: Rudi Labermeier/STN/SC/PHILIPS@EMEA1 amander.at> <samba@lists.samba.org>...
2008 Jun 25
0
Use plotmath expressions read from a text file in mtext/bquote
...#station number "River at River" #station name "ec" #name of wq variable to be plotted "EC"~(mu~s/cm) #axis label (in R plotmath expression) for RHS axis label And is read into a list called "ipf" via scan: ipf.headings <- list(stn=0,stn.name="",wqvar.name="",wqvar.axlab="") ipf <- scan(par.file, ipf.headings,strip.white=T,comment.char="#") Now, I would like to make a plot with a plotmath expression as the axis title that looks something like this: plot(1:10) textstr <- ("...
2008 Feb 13
0
pdb_new_rid: Failed to find unused RID
...d. pdbedit -L | awk -F: '{print $2 " " $1 ":" $3}' | sort -n ====== ... 3904 bobc:Clara Bob 3905 k121-001-26699$:Machine 3906 k121-01-26699$:Machine 65534 nobody:nobody 4294967295 16061-JPRM107$:16061-JPRM107$ 4294967295 23562-JP-STENO2$:23562-JP-STENO2$ 4294967295 J107-STN-01$:J107-STN-01$ ... 4294967295 Maryjean Paluck:mpaluck 4294967295 hal:Hardware abstraction layer,,, ... ====== Here is the top part of the smb.conf ====== [global] netbios name = SERVER workgroup = WORKGROUP server string = Server dns proxy = no strict locking = no log file = /v...
2007 Feb 25
1
[LLVMdev] X86RegisterInfo.td
In the X86RegisterInfo.td file, RST is defined like this: // Floating point stack registers (these are not allocatable by the // register allocator - the floating point stackifier is responsible // for transforming FPn allocations to STn registers) def RST : RegisterClass<"X86", [f64], 32, [ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7]> { let MethodProtos = [{ iterator allocation_order_end(const MachineFunction &MF) const; }]; let MethodBodies = [{ RSTClass::iterator...
2007 Jul 03
2
[LLVMdev] Swaps of FP registers
Dear guys, what is the best way to implement a swap of floating point registers in X86? For the integer registers, I am using xchg. Is there a similar instruction for floating point? My function to insert swaps is like: void X86RegisterInfo::swapRegs( MachineBasicBlock & mbb, MachineBasicBlock::iterator mi, unsigned r1, unsigned r2, const TargetRegisterClass
2007 Jul 04
0
[LLVMdev] Swaps of FP registers
On 7/3/07, Fernando Magno Quintao Pereira <fernando at cs.ucla.edu> wrote: > > what is the best way to implement a swap of floating point registers > in X86? For the integer registers, I am using xchg. Is there a similar > instruction for floating point? FXCH swaps stN with st0, but you'd have to use memory for arbitrary swaps I believe. I have no idea if it's the "best" though. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20070703/a30febcb/attachment.htm...
2011 Jul 27
2
for loop help
I am having a hard time putting the below into a loop, where it pulls out ppt from all he stations I have versus having to go through and hard code the data to the specific stations. I tried stnID <- stnid[which(duplicated(stnid)==FALSE)] for(i in 1:length(stnID)) { ppt[i] <- ppt[which(stnid==[i])] } but it doesn't like to use the which function inside a for loop? Any idea's here is a sample of my code... thanks-Cassie ### label data ### stnid <- dat1[,1] #list of statio...
2011 May 09
2
Using NULL to my data?
Dear R users, I am reading data from a file where there are some missing that are represented by -9999.00. I am using the command below. =====My original data =========== PARM = TMPC;T12X;T12N;DWPC;PALT;SKNT;DRCT;P24M;CLCL STN YYMMDD/HHMM TMPC T12X T12N DWPC PALT SKNT DRCT P24M CLCL 820420 110429/1200 22.50 -9999.00 22.40 22.20 -9999.00 0.00 0.00 84.00 4.00 820980 110429/1200 26.90 -9999.00 23.40 24....
2010 Apr 19
2
Overlay of barchart and xyplot
...####################### ============================= Huapeng Chen Landscape Modeling Biologist Research Branch Ministry of Forests and Range Phone: 250-387-2710 Fax: 250-387-0046 Email: Huapeng.Chen at gov.bc.ca 5th Floor -727 Fisgard Street Victoria, BC V8W 1N1 P.O.Box 9519 Stn. Prov. Govt. Victoria, BC V8W 9C2 =============================
2005 Dec 02
8
UserEngine: stack level too deep
Hi, I''m trying to get the UserEngine running. I have installed the LoginEngine, added the essential lines to environment.rb / application.rb and application_helper.rb. Worked fine. Then I did the same with the UserEngine and when trying to set up the db: rake engine_migrate ENGINE=user I get: Migrating engine ''user_engine'' rake aborted! stack level too deep But...