search for: 5i

Displaying 20 results from an estimated 69 matches for "5i".

Did you mean: i5
2014 Jul 14
2
cummax / cummin for complex numbers
Dear all, in R 3.1.0, this is happening: > cummin(c(1+1i,2-3i,4+5i)) Error in cummin(c(1 + (0+1i), 2 - (0+3i), 4 + (0+5i))) : 'cummax' not defined for complex numbers > cummax(c(1+1i,2-3i,4+5i)) Error in cummax(c(1 + (0+1i), 2 - (0+3i), 4 + (0+5i))) : 'cummin' not defined for complex numbers It may be fixed in R-devel, but I thought I'...
2006 Jun 13
17
reconstituting a date
...my view code, I have <%= datetime_select "in_out", "time_in" %> which returns in params :in_out: !map:HashWithIndifferentAccess time_in(1i): "2006" time_in(2i): "6" time_in(3i): "12" time_in(4i): "20" time_in(5i): "24" and I want to save that datetime to a column in the db... if params[:user][:in_out] == "In" @in_out.time_in = params[:in_out][:time_in] elsif params[:user][:in_out] == "Out" @in_out.time_out = params[:in_out][:time_in] params[:in_o...
2009 Mar 25
0
CentOS won't shutdown ... or do anything else
...w) none on /dev/pts type devpts (rw,gid=5,mode=620) usbfs on /proc/bus/usb type usbfs (rw) /dev/sda2 on /boot type ext3 (rw) none on /dev/shm type tmpfs (rw) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw) /dev/emcpowerd on /EMC/SATA/AX4-5i/LUN0 type ext3 (rw,_netdev,noatime) /EMC/SATA/AX4-5i/LUN0/path/var/spool/postfix on /var/spool/postfix type ext3 (rw,bind,_netdev,noatime) /dev/emcpowerk on /EMC/SATA/AX4-5i/LUN4 type ext3 (rw,_netdev,noatime) /EMC/SATA/AX4-5i/LUN4 on <path> type ext3 (rw,bind,_netdev,noatime) /dev/emcpowe...
2006 Aug 10
1
Convert datetime_select to Time object?
..."active_at". so I have the following for active_at: <%= f.datetime_select :active_at %> It gives me 5 different params: params[:product][:active_at(1i)] params[:product][:active_at(2i)] params[:product][:active_at(3i)] params[:product][:active_at(4i)] params[:product][:active_at(5i)] How do I convert this into a Time object? -------------------------- Question 2 -------------------------- What if I have another field called "is_active" and its just a boolean. If it''s set to false then active_at gets set to nil. Is there any easier way than just: if pa...
2006 Jul 18
1
Auto-populating time portion of a datetime field from a form
...''ve used the :prefix option to select_hour/minute/second to get the parameter name set correctly, but I end up with a hash with keys ''hour'', ''minute'' and ''second''. I can definitely handle this, but was wondering, can I just use 4i, 5i, 6i to index into the time portions of a datetime field? Thanks, Wes -- Posted via http://www.ruby-forum.com/.
2007 Feb 01
2
file_column 2nd try....
...when submitting the uploadform at least the worker get fired and passed the args as expected, as I can see in the backgroundrb_server.log: 20070201-10:47:29 (53830) Starting worker: image_worker upload_img (image_worker_upload_img) (imagecreated_on(2i)2created_on(3i)1created_on(4i)00created_on(5i)18updated_on(1i)2007updated_on(2i)2image_tempdescriptionbackgrounDRb33updated_on(3i)1imgnum007updated_on(4i)00image#<File:0x8d13028>updated_on(5i)18created_on(1i)2007) Now there are 2 questions: the image isnt uploaded, that is probably due to the fact that the file_columnPlugin isnt avail...
2018 Jul 10
1
problem with display of complex number
Hi, > 1e10+5i [1] 1e+10+0e+00i > Im(1e10+5i) [1] 5 maybe little better... --- R-3.5.1.orig/src/main/complex.c 2018-03-26 07:02:25.000000000 +0900 +++ R-3.5.1/src/main/complex.c 2018-07-10 12:50:42.523874767 +0900 @@ -381,6 +381,7 @@ r->i = fround(pow10 * x->i, digits)/pow10; } else {...
2010 Mar 25
2
print(big+small*1i) -> big + 0i
...ex number be printed to the same precision? The imaginary part of 0 looks a bit odd when log10(real/imag) >=~ getOption("digits"), but I'm not sure it is awful. Some people might expect the same number of significant digits in the two parts. > 1e7+4i [1] 10000000+0i > 1e7+5i [1] 10000000+0i > 1e10 + 1000i [1] 1e+10+0e+00i > getOption("digits") [1] 7 > options(digits=4) > 1e4+4i [1] 10000+0i > 1e7+1000i [1] 10000000+0i > version _ platform i386-pc-mingw32 arch i386 os mingw32 system i38...
2006 Jan 19
0
file_column error: tmp file created but not actual
...available(2i)"=>"1", "description"=>"test4", "date_available(3i)"=>"18", "date_available(4i)"=>"23", "user_id"=>"1", "image"=>#<File:/tmp/CGI9849.3>, "date_available(5i)"=>"20"}, "action"=>"create_wallpaper", "controller"=>"studio"} Wallpaper Columns (0.001305) SHOW FIELDS FROM products SQL (0.000249) BEGIN SQL (0.000194) COMMIT wallpaper.error++++++++++++++++++++++++ {"commit"=&...
2011 May 19
1
update_attributes updates data from second instance of nested form but not the first
...dating I would assume something is wrong in my code in terms of attributes getting assigned to a model, but that does not seem to be the case. Parameters: { "matchup"=> { "end_date(3i)"=>"19", "end_date(4i)"=>"16", "end_date(5i)"=>"46", "rosters_attributes"=> { "0"=> { "name"=>"abc", "players_rosters_attributes"=> { "0"=>{"player_id"=>"1", &quo...
2016 Jan 05
0
deparse with parentheses for SUBSET
...o Fixed deparsing of complex numbers, which were always deparsed as the sum of a real and an imaginary part, even though the parser can only produce complex numbers that are pure imaginary. For example, the following output was produced before: > deparse(quote(3*5i)) [1] "3 * (0+5i)" This is now deparsed to "3 * 5i". This bug exists in all R Core versions through at least R-3.2.2. o Fixed a number of bugs in the deparser that are illustrated by the following, which produce incorrect output as noted, in R Co...
2005 May 20
1
CCISS driver on HP DL380 G3 ?
Hi. I am trying to boot Xen 2.0.5 on an HP DL380 G3. It won''t. The box has an "HP Smart Array 5i" that when running normal Linux is handled by the CCISS driver. I suspect that this is what is not supported in the stock Xen kernel. Am I correct that I need to build a kernel from source ? According to http://lists.xensource.com/archives/html/xen-devel/2004-11/msg00709.html there is a guy t...
2006 Apr 18
1
inserting value got problem
...ot;=>"birla"}, "commit"=>"Verkaufsliste", "verkaufsliste"=>{"vkdatum(1i)"=>"2006", "vkdatum(2i)"=>"4", "vkdatum(3i)"=>"18", "vkdatum(4i)"=>"17", "vkdatum(5i)"=>"12"}} hi every body i want to insert above value but cant able to insert date how i can do that. plese reply me i juct do this in my controller if request.post? @verkaufsliste = Verkaufsliste.new(@params[:bestandsliste]) end if @verkaufsliste.save redirec...
2003 Jun 05
0
Summary of hangind HP proliant
Quick summary of the Issue I posted a few weeks go about a HP DL380G3 server running RHAS21 that was hanging under heavy disk IO. Server is 2x2.8GB hyper threading Xeons, 6GB 400Mhz RAM. It has a built in SmartArray 5i card that was mirroring 2 disks for root, and raid5-ing 4 disk for /apps_data. A multi GB tar could make the box unresponsive for several seconds. Through put to both volumes measured about the same ~20-25MB/s, using dd if=dev/zero. We evaled a $1300 SmartArray 5312 RAID card and only got about 30...
2005 Jul 12
1
xfs filesystem corruption
...yone here using sles9 with xfs in an lvm? We had severe filesystem corruption on a server today, and only two things were changed: I updated via yast online update (lot's of updates, strange enough, including an lvm update) and I had to replace a drive in my hardware 6 disk raid array. (IBM 5i, raid 5) Now I was wondering what caused the corruption: the lvm updates, or the disk change... (or even something else..?) therefore I'm asking here... Anyone having xfs/lvm problems/corruption after the updates? Mourik Jan
2013 Mar 14
0
[Rails 3.2] accepts_nested_attributes_for and time_select
...gt;"29.03.2013", "examdates_attributes"=>{"0"=>{"date"=>"29.03.2013", "from(3i)"=>"", "from(2i)"=>"", "from(1i)"=>"", "from(4i)"=>"00", "from(5i)"=>"00", "to(3i)"=>"", "to(2i)"=>"", "to( 1i)"=>"", "to(4i)"=>"00", "to(5i)"=>"00", "dur"=>"12", "_destroy"=>"false"}}}...
2013 Jun 08
0
Invitation to connect on LinkedIn
LinkedIn ------------ I'd like to add you to my professional network on LinkedIn. - casey casey guan VoIP software enginer at posterity China Confirm that you know casey guan: https://www.linkedin.com/e/-eeq1og-hho7lmea-5i/isd/13997857382/QytrCslx/?hs=false&tok=1hAd-04M6KARM1 -- You are receiving Invitation to Connect emails. Click to unsubscribe: http://www.linkedin.com/e/-eeq1og-hho7lmea-5i/XsWTO08Es76pJ9MdX8tLktg/goo/opus%40xiph%2Eorg/20061/I4651504436_1/?hs=false&tok=2nUTBvpWiKARM1 (c) 2012 LinkedIn Cor...
2012 Oct 16
3
Poor rsync performance after upgrade from 5.8 x86 to 6.3 x64
...l servers, and also pulling in rsync backups of some largish filesystems over SSH. These backups, prior to the upgrade were taking about 6 hours to complete (MANY small files). Now, after the upgrade, the same backups are taking about 16 hours to complete. The actual storage array in question (PERC 5i running RAID5) has not changed in any way, nor the filesystem (ext3). The only hardware change was an upgrade from 2GB to 16GB of RAM. Are there any issues with the filesystem being created by a 32bit OS, now used on a 64bit OS? I find it hard to believe rsync has gotten 'slower' in later...
2002 Apr 22
2
how can a function tell if defaults are used?
...a single complex argument (in which case I want the real and imaginary components). "e" <- function(first,second=first) { if (all(first == second) & is.complex(first)) { return(c(Re(first),Im(first))) } else { return (c(Re(first),Re(second))) } } Thus > e(1+5i) [1] 1 5 > e(1,5) [1] 1 5 which is what I want, but what is the best way to test whether the second argument is explicitly set by the caller or the default is used? My only idea was to test for first == second but this can't be optimal. Help anyone? -- Robin Hankin, Lecturer, School...
2007 Apr 24
6
Digium card sale
...ot;www.astawerks.com . From now until the end of June I will have a huge unpublished sale on all Digium products. Prices are way to low to list so I will have to be personally contacted. I also have a permanent sale on all AASTRA phones as well with AASTRA 9133i's as low as $124 and the new 5i series starting at just $142.50. That's just a sample of what we have going on . For more info come visit us at HYPERLINK "http://www.astawerks.com"www.astawerks.com JB Astawerks owner/engineer No virus found in this outgoing message. Checked by AVG Free Edition. Vers...