Displaying 4 results from an estimated 4 matches for "cube2".
Did you mean:
cubex
2008 Oct 24
1
Interesting faillog files.
Hi all CentOS users,
I looked /var/log/messages log file and i realize something in
"messages" files like below;
---
Oct 24 04:02:42 cube2 kernel: Buffer I/O error on device sdc, logical block 1545
---
"sdc" is my storage and i switched off storage at 6 PM.
and when i checked messages log file,I saw faillog under /var/log
directory like below:
-rw------- 1 root root 137438953440 Oct 24 15:39 faillog
its ~136 GB but...
2013 Oct 09
11
[Bug 70326] New: [NVF0] Kernel/Driver fails to initialize acceleration on GTX Titan
https://bugs.freedesktop.org/show_bug.cgi?id=70326
Priority: medium
Bug ID: 70326
Assignee: nouveau at lists.freedesktop.org
Summary: [NVF0] Kernel/Driver fails to initialize acceleration
on GTX Titan
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS: Linux
2009 Jul 09
5
Best way to export values from a function?
Maybe there is a great website out there or white paper that discusses this but again my Google skills (or lack there of) let me down.
I would like to know the best way to export several doubles from a function, where the doubles are not an array.
Here is a contrived function similar to my needs:
multipleoutput<-function(x)
{
squared<-x^2
cubed<-x^3
exponentioal<-exp(x)
2009 Jul 09
2
How to Populate List
...But then you'd have to call it like so:
> mapply(multipleoutput, c(0,1,2))
[,1] [,2] [,3]
square 0 1.000000 4.000000
cube 0 1.000000 8.000000
exp 1 2.718282 7.389056
If you call it like so:
> multipleoutput(c(0,1,2))
square1 square2 square3 cube1 cube2 cube3 exp1 exp2
0.000000 1.000000 4.000000 0.000000 1.000000 8.000000 1.000000 2.718282
exp3
7.389056
then R flattens the result. Weird.
- Godmar
------------------------------
Message: 131
Date: Thu, 9 Jul 2009 00:35:08 +0100
From: tzygmund mcfarlane <tzygmund@googlemail....