Displaying 20 results from an estimated 28 matches for "10f".
Did you mean:
10
2006 May 19
1
Writing to a file with fixed precision
Dear R users;
A follow-up question regarding writing to a file with fixed precision:
Assuming for each column of x, I would like to have a different format, then I modify the code as:
x.fmt <- apply(x, 1, function(x) sprintf("%.14f %.10f %2.5f", x))
where three different formats are %.14f %.10f %2.5f.
The error message I got is "Error in sprintf(fmt, ...) : too few arguments".
If put %1$.14f %2$.10f %3$2.5f. instead, a different error message becomes:
"Error in sprintf(fmt, ...) : reference to non-existent a...
2013 Mar 07
1
How to export data with defined decimal places
Hi all mailing listers,
I want to export data with specified precision into .txt file. How can I
make it? See below
sprintf("%.10f",pi)
[1] "3.1415926536"
when carry out write.matrix(pi,"pi.txt"), 3.141592653589793115998 in pi.txt
file not with 10 decimal places like using sprintf("%.10f",pi)
Thanks
Marino
[[alternative HTML version deleted]]
2006 Jun 12
3
panic in buf_hash_remove
...ss: 30
fffffe80005c3870 unix:die+eb ()
fffffe80005c3970 unix:trap+14f9 ()
fffffe80005c3980 unix:cmntrap+140 ()
fffffe80005c3aa0 zfs:buf_hash_remove+54 ()
fffffe80005c3b00 zfs:arc_change_state+1bd ()
fffffe80005c3b70 zfs:arc_evict_ghost+d1 ()
fffffe80005c3b90 zfs:arc_adjust+10f ()
fffffe80005c3bb0 zfs:arc_kmem_reclaim+d0 ()
fffffe80005c3bf0 zfs:arc_kmem_reap_now+30 ()
fffffe80005c3c60 zfs:arc_reclaim_thread+108 ()
fffffe80005c3c70 unix:thread_start+8 ()
syncing file systems...
done
dumping to /dev/md/dsk/swap, offset 644874240, content: kernel
> $c
buf_hash_remove+...
2017 Sep 02
0
problem in testing data with e1071 package (SVM Multiclass)
...no7rainy sunny rainy no8rainy cloud
rainy no9cloud maybe 10cloud cloud maybe 11cloud rainy cloud maybe
12cloud sunny cloud maybe|
* test.csv: in this file there are the new data to be classified and
it is in one column/variable.
Example:
|V1 1sunny 2rainy 3hello 4cloud 5a 6b 7cloud 8d 9e 10f 11g 12hello|
Following the examples from the iris dataset
(https://cran.r-project.org/web/packages/e1071/e1071.pdfandhttp://rischanlab.github.io/SVM.html)
I created my model and then test the training data in this way:
|>library(e1071)
>train <-read.csv(file="./train.csv",sep...
2015 Jan 08
2
Solaris 10 make check core dumps
...ed and I can proceed to "make install" or
should I look somewhere else for the problem? Here is the mdb
backtrace:
$ mdb test-http-auth core
Loading modules: [ libc.so.1 ld.so.1 ]
> ::stack
libc.so.1`strlen+0x50(29487, ffbffb00, ffbff43d, 0, 0, 0)
libc.so.1`vsnprintf+0x70(4f2c0, 10f, 29478, ffbffaf8, 10, ff1c7078)
t_noalloc_strdup_vprintf+0x3c(4f2c0, ffbffaf8, ffbffa2c, 1, 19, 0)
p_strdup_vprintf+0xc(4cb90, 29478, ffbffaf8, ff1c759c, 4cc38, 4cb8c)
t_strdup_printf+0x38(29478, 0, 0, 61fefeff, 80808080, 1010101)
test_http_auth_challenges_valid+0x150(29000, 29400, 0, 4f250, 4cbb8,...
2013 Feb 17
1
addition in the initial question
...ograms and fitting density curve.
[HEADER] A ? B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ? X Y ?Z
[VECTOR] 33 18 13 47 30 10 ?6 21 39 25 40 29 14 16 44 ?1 41 ?4 15 20 46 32 38 ?5 31 12?
classheader?of elements in each class?Frequency
0<x<=5P, R, X? ? ? ?3
5<x<=10F, G? ? ? ?2
10<x<=15 ?C, S? ? ? ?2
.....
...
...
...
45<x<=50? ? ? ?U? ? ? ?1
thankyou very much in advance
elisa
2020 Feb 11
0
[PATCH 30/62] x86/head/64: Move early exception dispatch to C code
...b/arch/x86/kernel/head_64.S
index 0af79f783659..81cf6c5763ef 100644
--- a/arch/x86/kernel/head_64.S
+++ b/arch/x86/kernel/head_64.S
@@ -357,18 +357,9 @@ SYM_CODE_START_LOCAL(early_idt_handler_common)
pushq %r15 /* pt_regs->r15 */
UNWIND_HINT_REGS
- cmpq $14,%rsi /* Page fault? */
- jnz 10f
- GET_CR2_INTO(%rdi) /* can clobber %rax if pv */
- call early_make_pgtable
- andl %eax,%eax
- jz 20f /* All good */
-
-10:
movq %rsp,%rdi /* RDI = pt_regs; RSI is already trapnr */
- call early_fixup_exception
+ call early_exception
-20:
decl early_recursion_flag(%rip)
jmp restore_regs_...
2006 Sep 10
1
R number output format
I'd like to save the number 0.0000012 to a file just as it appears, but when
I dput(0.0000012, "t.txt"), I got 1.2e-06, NOT 0.0000012.
Anybody knows how I can do this?
> 0.0000012
[1] 1.2e-06
> as.character(0.0000012)
[1] "1.2e-06"
> dput(0.0000012, "t.txt")
Thanks.
[[alternative HTML version deleted]]
2004 Mar 05
2
unexpected dirty buffer
Hello.
On a server running 2.4.25, I have the two following errors in the
kernel logfile:
Unexpected dirty buffer encountered at do_get_write_access:618 (08:11 blocknr 920707)
Unexpected dirty buffer encountered at do_get_write_access:618 (08:11 blocknr 920707)
Should I worry about them (disk failure, filesystem damage) ?
Thanks.
As an addition what does the pair '08:11' means ? Is
2005 May 03
0
several ext3 and mysql kernel crashes
...op_transaction+108/290>
b: 74 2a je 37 <_EIP+0x37> c01f8410
<__journal_drop_transaction+134/290>
Code; c01f83e6 <__journal_drop_transaction+10a/290>
d: 68 05 98 42 c0 push $0xc0429805
Code; c01f83eb <__journal_drop_transaction+10f/290>
12: 68 65 02 00 00 push $0x265
Code; c01f83f0 <__journal_drop_transaction+114/290>
17: 68 67 95 42 c0 push $0xc0429567
Code; c01f83f5 <__journal_drop_transaction+119/290>
1c: 68 64 97 42 c0 push $0xc0429764
Code; c01f83fa <...
2009 Jun 22
21
Build 115 fresh install.XVM crashes on boot.
Completely fresh,virgin install of b115 SXCE ,zero modifications done.
If select XVM from boot menu,it comes all the way till
"Starting Desktop login on Display:0..." and reboots.
Regular Solaris(not XVM) boots fine.
Intel XEON CPU,8G RAM
Intel S3210SHLX motherboard(http://www.intel.com/Products/Server/Motherboards/Entry-S3200SH/Entry-S3200SH-overview.htm)
Please help and thanks a lot
2006 Feb 01
0
SAMBA 3.0.21b expired password issue for Solaris 9 - perhaps a bug in winbind or /etc/pam.conf misconfigure
...NG_PASSWORD
Feb 1 14:53:32 hermione pam_winbind[1153]: [ID 678512 auth.warning]
user `leeraym' denied access (incorrect password or invalid membership)
Feb 1 14:53:36 hermione sshd[1151]: [ID 800047 auth.error] error: PAM:
Authentication token manipulation error for leeraym from tuvok
tail -10f /var/log/authlog.debug
Feb 1 14:53:29 hermione pam_winbind[1153]: [ID 572310 auth.info] Verify
user `leeraym'
Feb 1 14:53:29 hermione pam_winbind[1153]: [ID 467601 auth.error]
request failed: Must change password, PAM error was 10, NT error was
NT_STATUS_PASSWORD_MUST_CHANGE
Feb 1 14:53:29...
2015 Jan 10
0
Solaris 10 make check core dumps
...nfigure \
--prefix=${PREFIX} \
--sysconfdir=/etc/opt/${PREFIX} \
--localstatedir=/var/opt/${PREFIX} \
...
$ man -s 5 filesystem
$ mdb test-http-auth core
Loading modules: [ libc.so.1 ld.so.1 ]
> ::stack
libc.so.1`strlen+0x50(29487, ffbffb00, ffbff43d, 0, 0, 0)
libc.so.1`vsnprintf+0x70(4f2c0, 10f, 29478, ffbffaf8, 10, ff1c7078)
t_noalloc_strdup_vprintf+0x3c(4f2c0, ffbffaf8, ffbffa2c, 1, 19, 0)
p_strdup_vprintf+0xc(4cb90, 29478, ffbffaf8, ff1c759c, 4cc38, 4cb8c)
t_strdup_printf+0x38(29478, 0, 0, 61fefeff, 80808080, 1010101)
Spot the zeros. It's doing the equivalent of 'vsnprintf(s,...
2016 Mar 18
0
[PATCH] gpu/drm: Use u64_to_user_pointer
...an Zippel 2006-06-25 216 " .section __ex_table,\"a\"\n" \
53617825 include/asm-m68k/uaccess.h Roman Zippel 2006-06-25 217 " .align 4\n" \
53617825 include/asm-m68k/uaccess.h Roman Zippel 2006-06-25 218 " .long 1b,10f\n" \
53617825 include/asm-m68k/uaccess.h Roman Zippel 2006-06-25 219 " .long 2b,20f\n" \
53617825 include/asm-m68k/uaccess.h Roman Zippel 2006-06-25 220 " .ifnc \""#s3"\",\"\"\n" \
53617825 include/as...
2016 Mar 18
4
[PATCH] gpu/drm: Use u64_to_user_pointer
Use the newly added u64_to_user_pointer a bit more frequently.
Signed-off-by: Joe Perches <joe at perches.com>
---
drivers/gpu/drm/armada/armada_gem.c | 2 +-
drivers/gpu/drm/nouveau/nouveau_gem.c | 7 ++++---
drivers/gpu/drm/tegra/drm.c | 15 ++++++++-------
drivers/gpu/drm/vc4/vc4_bo.c | 4 ++--
drivers/gpu/drm/vc4/vc4_gem.c | 10 +++++-----
2016 Mar 18
4
[PATCH] gpu/drm: Use u64_to_user_pointer
Use the newly added u64_to_user_pointer a bit more frequently.
Signed-off-by: Joe Perches <joe at perches.com>
---
drivers/gpu/drm/armada/armada_gem.c | 2 +-
drivers/gpu/drm/nouveau/nouveau_gem.c | 7 ++++---
drivers/gpu/drm/tegra/drm.c | 15 ++++++++-------
drivers/gpu/drm/vc4/vc4_bo.c | 4 ++--
drivers/gpu/drm/vc4/vc4_gem.c | 10 +++++-----
2012 Jan 09
39
[PATCH v4 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the fourth version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See
2011 Dec 06
57
[PATCH RFC 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the very first version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See
2020 Feb 11
83
[RFC PATCH 00/62] Linux as SEV-ES Guest Support
Hi,
here is the first public post of the patch-set to enable Linux to run
under SEV-ES enabled hypervisors. The code is mostly feature-complete,
but there are still a couple of bugs to fix. Nevertheless, given the
size of the patch-set, I think it is about time to ask for initial
feedback of the changes that come with it. To better understand the code
here is a quick explanation of SEV-ES first.
2020 Feb 11
83
[RFC PATCH 00/62] Linux as SEV-ES Guest Support
Hi,
here is the first public post of the patch-set to enable Linux to run
under SEV-ES enabled hypervisors. The code is mostly feature-complete,
but there are still a couple of bugs to fix. Nevertheless, given the
size of the patch-set, I think it is about time to ask for initial
feedback of the changes that come with it. To better understand the code
here is a quick explanation of SEV-ES first.