search for: soria

Displaying 20 results from an estimated 27 matches for "soria".

Did you mean: sorin
2011 Nov 23
9
which en un data.frame de caracteres?
...eresa encontrar las coordendas de un cierto objeto dentro del "data.frame". Eso para arrays o para matrices lo hago con la función which(). Pero no consigo hacerlo para esta caso ¿alguna sugerencia para realizarlo sin tener que utilizar bucles? Gracias por adelantado. Un saludo, Alberto Soria. [[alternative HTML version deleted]]
2011 Jan 31
0
Esféricas 3D (Alberto Soria)
Hola, Echale un ojo al paquete ggplot2: http://had.co.nz/ggplot2/coord_polar.html Puedes tambien convertir a Cartesianas: Polar2Cartesian = function(t1, rP){ x1 = rP*cos(t1) y1 = rP*sin(t1) return(c(x = x1,y = y1)) } y trabajar desde ahí con el paquete rgl: http://rgl.neoscientists.org/gallery.shtml Un saludo Eduardo San Miguel Martin Consultor BI [[alternative HTML version
2014 Jul 09
4
Conversion date a numeric y vuelta a date
Hola a todos: Debe de ser una tontería, pero no consigo saber porque la siguiente linea no devuelve la fecha actual: as.Date(as.numeric(Sys.time())) He hecho esa prueba porque no consigo pasar un numero convertido a partir de una fecha y modificado a fecha de nuevo. Gracias por adelantado. Un saludo, Alberto. [[alternative HTML version deleted]]
2013 Dec 05
1
Ampliar data.frame con datos del propio data.frame
...13:22, Carlos J. Gil Bellosta < cgb@datanalytics.com> escribió: > Hola, ¿qué tal? > > Lo que quieres es un "left join". Usa merge. > > Un saludo, > > Carlos J. Gil Bellosta > http://www.datanalytics.com > > El día 5 de diciembre de 2013 13:08, Alberto Soria > <alberto.soria@ari-solar.es> escribió: > > ¡Hola a todos! > > > > Tengo el siguiente data.frame: > > > > p <- > > > data.frame(id=c(1:6),cara=c(1,0,0,1,0,0),anterior=c(0,1,2,0,4,5),siguiente=c(2,3,0,5,6,0),superficie=c(1,2,0,1,2,0)) > > &gt...
2011 Jul 07
4
rgl movimiento
...# Limpiar if(rgl.cur() !=0) rgl.clear() # Nuevo cuadrado quads3d(v[,1],v[,2],v[,3],col="green") # cont <- cont + 1 } ¿Hay alguna forma de dar movimiento a una figura con rgl sin que aparezcan esos flashes? Muchas gracias por adelantado. Un saludo, Alberto Soria. [[alternative HTML version deleted]]
2008 Aug 20
2
[LLVMdev] LiveIntervals for FunctionPass
...vals.html). I'd like something at the FunctionPass level. On Tue, Aug 19, 2008 at 6:11 PM, Evan Cheng <evan.cheng at apple.com> wrote: > I am not sure what you mean. Live interval analysis is done at the > function level. > > Evan > > On Aug 19, 2008, at 1:26 AM, Sean Soria wrote: > > > Is there an equivalent to LiveIntervals that works at the Function > > level? If not, is there anything that makes it difficult to > > implement compared to the MachineFunction version? > > > > Sean > > ___________________________________________...
2003 Dec 09
2
Difficulties trying to control VOIP traffic with TC - HTB
.... But every effort seems to be unuseful: Every time someone opens web browser, VOIP sound quality goes down... So, could someone tell me what''s wrong about my script?? I know it is possible to get what I''m trying with htb, anyway... Very thanks to everybody. Cheers. Ricardo Soria. _________________________________________________________ Do You Yahoo!? Información de Estados Unidos y América Latina, en Yahoo! Noticias. Visítanos en http://noticias.espanol.yahoo.com _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9...
2008 Aug 14
2
[LLVMdev] Static Profiling with LLVM
Is there currently a way to get static profiling information for a program (e.g. an implementation of "Static Branch Frequency and Program Profile Analysis" by Wu and Larus, or something more recent) using an LLVM pass? Sean -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Aug 14
0
[LLVMdev] Static Profiling with LLVM
On Wed, Aug 13, 2008 at 7:00 PM, Sean Soria <sean.soria at gmail.com> wrote: > Is there currently a way to get static profiling information for a program > (e.g. an implementation of "Static Branch Frequency and Program Profile > Analysis" by Wu and Larus, or something more recent) using an LLVM pass? the profiling...
2008 Aug 20
0
[LLVMdev] LiveIntervals for FunctionPass
Ok. If it's at llvm ir level, it's very simple since everything is in SSA form. What are you trying to achieve though? Evan On Aug 19, 2008, at 6:51 PM, Sean Soria wrote: > It's done at the MachineFunctionPass level as far as I can tell (http://llvm.org/doxygen/classllvm_1_1LiveIntervals.html > ). I'd like something at the FunctionPass level. > > On Tue, Aug 19, 2008 at 6:11 PM, Evan Cheng <evan.cheng at apple.com> > wrote: &...
2013 Dec 05
3
Ampliar data.frame con datos del propio data.frame
¡Hola a todos! Tengo el siguiente data.frame: p <- data.frame(id=c(1:6),cara=c(1,0,0,1,0,0),anterior=c(0,1,2,0,4,5),siguiente=c(2,3,0,5,6,0),superficie=c(1,2,0,1,2,0)) En realidad es muchísimo más grande, pero creo que las primeras filas servirán para explicar mi problema. El data.frame contiene los puntos de intersección entre fotones y superficies. Dichos puntos están identificados con el
2008 Aug 19
2
[LLVMdev] LiveIntervals for FunctionPass
Is there an equivalent to LiveIntervals that works at the Function level? If not, is there anything that makes it difficult to implement compared to the MachineFunction version? Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080819/19a10b43/attachment.html>
2008 Aug 20
0
[LLVMdev] LiveIntervals for FunctionPass
I am not sure what you mean. Live interval analysis is done at the function level. Evan On Aug 19, 2008, at 1:26 AM, Sean Soria wrote: > Is there an equivalent to LiveIntervals that works at the Function > level? If not, is there anything that makes it difficult to > implement compared to the MachineFunction version? > > Sean > _______________________________________________ > LLVM Developers mail...
2013 Dec 05
0
Ampliar data.frame con datos del propio data.frame
Hola, ¿qué tal? Lo que quieres es un "left join". Usa merge. Un saludo, Carlos J. Gil Bellosta http://www.datanalytics.com El día 5 de diciembre de 2013 13:08, Alberto Soria <alberto.soria en ari-solar.es> escribió: > ¡Hola a todos! > > Tengo el siguiente data.frame: > > p <- > data.frame(id=c(1:6),cara=c(1,0,0,1,0,0),anterior=c(0,1,2,0,4,5),siguiente=c(2,3,0,5,6,0),superficie=c(1,2,0,1,2,0)) > > En realidad es muchísimo más grande, per...
2004 Nov 09
23
SEPARATING VOIP AND SURFING
Dear list: I have a problem I cannot handle yet, and need to solve it as soon as possible. Would be very greatful with anybody who can help me. I have a 512/512 link to internet, that I want to share between several computers. I have eth0, with a public IP address, conected to Internet, and also, eth1, with a private IP address, for network with the surfing computers. I have a main class with
2016 Jun 21
2
Problemas con tildes y otros caracteres en R y RStudio
..."Pontevedra" [45] "Palencia" "Ciudad Real" [47] "Zamora" "Mérida" [49] "à vila" "Cuenca" [51] "Segovia" "Huesca" [53] "Soria" "Teruel" Es decir, no aparecen ni tildes ni eñes. Si, en cambio, ejecuto library(XML) library(RCurl) capitales <- data.frame(readHTMLTable(getURL(" https://es.wikipedia.org/wiki/Anexo:Capitales_de_provincia_de_Espa%C3%B1a_por_poblaci%C3%B3n ")))...
2005 Oct 10
1
Prioritize ACK packets
Guys I''m a bit rusty and in a hurry, can anyone share with me how to prioritze TCP/ACK packets on an outgoing interface... I need these acknowledgements to get through on a congested DSL link... Thanks in advance! -- Kenneth Kalmer kenneth.kalmer@gmail.com Folding@home stats http://vspx27.stanford.edu/cgi-bin/main.py?qtype=userpage&username=kenneth%2Ekalmer
2004 Jan 14
1
htb+redhat7.3
HI all Just doing so recon before doing a installation Will htb work on redhat 7.3,default kernel,i think 2.4.18? Thanks _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2016 Jun 21
2
Problemas con tildes y otros caracteres en R y RStudio
...t;Palencia" "Ciudad Real" > > [47] "Zamora" "Mérida" > > [49] "à vila" "Cuenca" > > [51] "Segovia" "Huesca" > > [53] "Soria" "Teruel" > > > > Es decir, no aparecen ni tildes ni eñes. > > > > Si, en cambio, ejecuto > > > > library(XML) > > library(RCurl) > > > > capitales <- data.frame(readHTMLTable(getURL(" > > > h...
2008 Mar 31
0
[LLVMdev] Compile programs with the LLVM Compiler as a gsoc project
...it tries to compile test programs to make sure gcc works. Adding the "-c" option allows it to compile but it outputs as filename.o instead of a.out as the script expects. Without the "-c" option I get ld errors: ld: Unknown command line argument '-m'. Try: '/home/ssoria/llvm/gcc/ld --help' ld: Unknown command line argument '-dynamic-linker'. Try: '/home/ssoria/llvm/gcc/ld --help' ld: Unknown command line argument '-emit-llvm'. Try: '/home/ssoria/llvm/gcc/ld --help' collect2: ld returned 1 exit status -------------- next part -...