Displaying 3 results from an estimated 3 matches for "f6r".
Did you mean:
f6
2006 Sep 12
1
Build 2.0.4, usb.h missing.
Hi!
I've got a Mandrake 2006.0 machine and a APC Back-UPS Pro 500/1000/1500
(from lsusb). The Mandrake package version of nut is 2.0.1 and hidups
actually detects the UPS, however I get loads of these:
Sep 12 18:26:11 vader hidups[7658]: Ignoring x86 page event 0xff860080 (0)
Sep 12 18:26:11 vader hidups[7658]: Unhandled event: 0x840058 (6)
Sep 12 18:26:11 vader hidups[7658]: Unhandled
2005 Jul 02
2
Rebooting not working
Hi!
I've installed NUT 2.0.2 to work with my MGE Protection Center and it
works but for one thing. When I reboot the computer, at startup
upsdrvctl/newhidups can't find the UPS so I have to manually unplug,
replug and start upsdrvctl/upsd every time. I've installed from
sourcecode onto a Gentoo machine. Where should I look for the problem
(USB/hotplug/newhidups/somewhere else)?
2018 Jan 18
1
wrong matrix dimension in sparseQR
Hi,
I came across a case when the dimensions of matrices returned by qr()
operated on a sparse matrix does not coincide with the initial matrix.
Here is a spinet code that should produce an example (one of many that I could provide):
?m=205
?n=199
?set.seed(7);
?a=matrix(rnorm(m*n), m, n)
?a[sample(seq(m*n), m*(n-4))]=0
?a=as(a, "Matrix")
?qa=qr(a);
?stopifnot(nrow(qa at R) ==