search for: ppy

Displaying 20 results from an estimated 81 matches for "ppy".

Did you mean: ppc
2007 May 15
1
legend with mixed boxes and lines (not both)
Hi, I seem to be unable to get a mixed legend that has lines *or* polygons (not both). For example: ppi <- seq(0,2*pi,length.out=21)[-21] frame() plot.window(ylim=c(-5,5),xlim=c(-5,5),asp=1) polygon(cos(ppi)*4+rnorm(20,sd=.2),sin(ppi)*4+rnorm(20,sd=.2), col="green",border=FALSE) polygon(cos(ppi)*2+rnorm(20,sd=.1),sin(ppi)*2+rnorm(20,sd=.1), col="blue",border=FALSE)
2005 Oct 28
2
Invalid read of size 1...
Hi all. I'm here again :) The small leak in my app is gone. I'm going on with it, now I grab a frame from a video device and I encode it with Theora... The debugger ( valgrind ) says: ... ==2782== Invalid read of size 1 ==2782== at 0x1B94B0BD: PixelLineSearch (scan.c:1482) ==2782== by 0x1B94B35A: PixelLineSearch (scan.c:1597) ==2782== by 0x1B94B447: LineSearchScorePixel
2007 Apr 22
1
dput/dget when a data frame has 2 rows (PR#9627)
This doesn't seem right; I'm using R version 2.4.1 (2006-12-18) on Mac OS and Win XP and find the same issue: > mydataframe <- data.frame(ppi=c(.5,.5),mmu=c(5,10)) > dput(mydataframe,"mydataframe.txt") > dget("mydataframe.txt") Error in attributes(.Data) <- c(attributes(.Data), attrib) : row names must be 'character' or 'integer', not
2008 Jul 14
2
Wine 1.1.1 bz2 Slackware compiling source problem
...|| echo "wine-1.1.1") | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p' >version-stamp || (rm -f version-stamp && exit 1) make[2]: Leaving directory `/home/wine-1.1.1/libs/wine' make[2]: Entering directory `/home/wine-1.1.1/libs/wpp' bison -p ppy_ -o ppy.tab.c -d ppy.y make[2]: *** [ppy.tab.h] Broken pipe make[2]: Leaving directory `/home/wine-1.1.1/libs/wpp' make[1]: *** [wpp] Error 2 make[1]: Leaving directory `/home/wine-1.1.1/libs' make: *** [libs] Error 2 " In this moment I use a wine version 0.9.45...what should I do ?...
2001 Aug 06
3
WINE install Error
...ll (731) and managed to get through the ./configure stage, installing rpms as needed. However, when WINE installs it gives me these set of errors: "cd `dirname wrc/__depend__` && make depend make[2]: Entering directory `/mnt/windows/Vault/Wine/wine/wine-20010731/tools/wr c' yacc -bppy -ppp -d -t ./ppy.y make[2]: yacc: Command not found make[2]: *** [ppy.tab.c] Error 127 make[2]: Leaving directory `/mnt/windows/Vault/Wine/wine/wine-20010731/tools/wrc ' make[1]: *** [wrc/__depend__] Error 2 make[1]: Leaving directory `/mnt/windows/Vault/Wine/wine/wine-20010731/tools' make:...
2005 Aug 15
1
png and resolution (PR#8066)
Full_Name: Knut krueger Version: 2.1.1 OS: xp Home Submission from: (NULL) (149.225.134.34) In the png function the value res seems to be inactive: bmp(filename = "c:/r/Rplot%03d.bmp", width = 1920, height = 1920, pointsize = 48, bg = "white", res = 2400) result: witdh/heigth = 1920 <> 20.32 mm ppi=2400 Results as expected png(filename =
2006 Apr 11
1
problems with assign
Hello. I have n files in a directory: file1, ..., filen. I read them with the following commands: list=scan(file="list",what=list(nom="")) # in the file list, I have all the filenames. n=length(list[[1]]) for (i in 1:n){ aux <- paste("p",i,sep="") assign(aux, as.matrix(read.table(list[[1]][i]))) } R creates the matrices p1,p2,...,pn. I want
2001 Aug 09
0
20010731 Build problem on solaris 7.0 on Sparc.
When I run "./tools/wineinstall" , I got following errors. gcc -c -I. -I. -I../../include -I../../include -g -O2 -Wall -D__WINE__ -D_REENTRANT -I/usr/openwin/include -o ppy.tab.o ppy.tab.c In file included from ./ppy.y:183: /usr/include/values.h:45: warning: `MAXSHORT' redefined ../../include/winnt.h:490: warning: this is the location of the previous definition /usr/include/values.h:47: warning: `MAXLONG' redefined ../../include/winnt.h:492: warning: this is t...
2002 Aug 08
3
I can't compile wine
I there, I tried to compile winex 20020806 but I have this thing after making depend: make[2]:***[ppy.tab.c] segment foult make[1]:***[wrc/__depend__] Error 2 make:***[tools/__depend__] Error 2 and then stop all. I don't really know what to do, help will be appreciated. I am using Mandrake linux 8.2 with gcc 3.0.4 The wine who came with the CD works. But I need the newer. J.C.
2009 Jul 26
0
MeetMe time doesn't show up in CDRs?
Hello, I'm working on some dialplan rules to pull multiple users into a conference call. I have some fairly straightforward rules which start up a new MeetMe conference, allow escape with the * key to invite more users, then use a features.conf sequence to bring the new user into the conference with ChannelRedirect. The problem I'm running into is the time in the MeetMe conference
2011 Aug 20
4
I have a problem with R!!
Dear all i?m working with a program i?ve made in R (using functions that others created) to run my program i need a sample. if i generate the sample using for example, rnorm(n, mu, sigma) i have no problem but if i obtain a sample from a column in excel and i copy it, the program says that there is a mistake: it says "Error en `[.data.frame`(data, indices) : undefined columns
2013 Apr 24
3
[PATCH] xen/arm: Missing +1 when then number of interrupt lines for the GIC is computed
In the GIC manual, the number of interrupt lines is computed with the following formula: 32(N + 1) where N is the value retrieved from GICD_TYPER. Signed-off-by: Julien Grall <julien.grall@linaro.org> --- xen/arch/arm/gic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/arm/gic.c b/xen/arch/arm/gic.c index 760c86b..389c217 100644 ---
2013 Jun 12
26
Interesting observation with network event notification and batching
Hi all I''m hacking on a netback trying to identify whether TLB flushes causes heavy performance penalty on Tx path. The hack is quite nasty (you would not want to know, trust me). Basically what is doesn''t is, 1) alter network protocol to pass along mfns instead of grant references, 2) when the backend sees a new mfn, map it RO and cache it in its own address space. With this
2005 Jul 12
5
High resolution plots
Is there any possibility to get high resolution plots in a windows xp system? I tried it with the device function png(filename = "c:/r/highresplot%d.png",pointsize=12, res=900) but when I try to set: width = 480, height = 480 or pointsize = 12, the text is not scaled in the same way as the plots. with regards Knut Krueger http://www.biostatistic.de
2001 Mar 11
3
Cannot even compile Wine
.... -I. -I../../include -I../../include -C. lang.c mcl.c utils.c wmc.c write.c mcy.y -C. make[2]: Leaving directory `/share/Emulators/wine-20010305/tools/wmc' cd `dirname wrc/__depend__` && make depend make[2]: Entering directory `/share/Emulators/wine-20010305/tools/wrc' yacc -bppy -ppp -d -t ./ppy.y make[2]: yacc: Command not found make[2]: *** [ppy.tab.c] Error 127 make[2]: Leaving directory `/share/Emulators/wine-20010305/tools/wrc' make[1]: *** [wrc/__depend__] Error 2 make[1]: Leaving directory `/share/Emulators/wine-20010305/tools' make: *** [tools/__depend__] E...
2006 May 06
1
Error compiling Wine 0.9.12
...w. Apologies for the length of the mail, but I don't want to miss out anything which may be vital :) Any suggestions would be gratefully received. Kind regards, Julian gcc -c -I. -I. -I../../include -I../../include -Wall -pipe - -fno-strict-aliasing -gstabs+ -Wpointer-arith -g -O2 -o ppy.tab.o ppy.tab.c /usr/share/bison++/bison.cc: In function `ppparse': /usr/share/bison++/bison.cc:559: warning: `yystate' might be used uninitialized in this function /usr/share/bison++/bison.cc:560: warning: `yyn' might be used uninitialized in this function /usr/share/bison++/bison.cc:5...
1999 Jul 23
2
Getting R graphics into MS Word (more)
Further to my earlier question. Thank you to: John Maindonald, Ramon Diaz-Uriarte, Brian Ripley, Alvaro Novo, Simon Bond and David Scott for your helpful replies. I have looked at the problem in some more detail. I am using Rgui.exe Version 0.64.2 (July 3, 1999) running under Windows NT To demonstrate the problem, I run the program: > win.graph(width=5, height=3) > data(women) >
2006 Apr 11
1
Graphics device size
Dear All, When working with composite plots many times I have to manually adjust the graphics display window size to get the best results (in Windows XP). I can then find the size of the adjusted window in inches using par("din"). Now I would like to export the adjusted graphs as png's and have them look as close to the original display as possible. The problem is that the png
2009 Feb 03
1
Using getSymbols
Hi, How can one ask getSymbols to obtain data within a specified time interval? For example, if I am downloading US PPI data: usppi <- as.zoo(getSymbols("PPIACO", src="FRED", verbose=TRUE, auto.assign=FALSE)) How do I ask getSymbols to truncate starting from Jan-1970 until present? I looked up the help file but couldn't find anything. Another newbie question, can I
2020 Aug 07
3
With ARI, is it possible to create (originate) a call and pass both the caller id name and number?
Hi Dan, as far as PPI and PAI Header, we use the channel Vars in order to do that. In Latest Asterisk you can set Channel vars within the create command in the Body. Just set the PJSIP(add,PAI) as you would do it in Dialplan. https://blogs.asterisk.org/2020/07/22/ari-create-channel-with-variables/ BR Jöran On Fri, Aug 7, 2020 at 7:06 PM Dan Cropp <dan at amtelco.com> wrote: > An