Displaying 20 results from an estimated 48 matches for "9,5".
Did you mean:
1,5
2004 Sep 10
1
XMMS plugin build fix
I think I sent a bad patch for this one already, which used a _LIBS variable.
There is no _LIBS variable. :-) So, the .la file should be specified directly
in _LIBADD, with no linker flag syntax. libtool will figure it out.
diff -u -r1.1.1.1 Makefile.am
--- Makefile.am 29 Jan 2001 18:13:29 -0000 1.1.1.1
+++ Makefile.am 21 Jun 2001 19:27:31 -0000
@@ -9,5 +9,5 @@
xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
libxmms_flac_la_SOURCES = plugin.c
-libxmms_flac_la_LIBADD = -L$(top_builddir)/src/libFLAC/.libs -lFLAC @XMMS_LIBS@
+libxmms_flac_la_LIBADD = @XMMS_LIBS@...
2003 Sep 20
4
persp graphs
...ctor does not help, and, of course, order the first two independently makes
no sense since they are geographic coordinates. So, what I am doing wrong?
Thank you all very much for the help,
Mario
--
Dr. Mario A. Cozzuol
Laborat?rio de Biologia Evolutiva
Universidade Federal de Rond?nia
BR 364, Km 9,5
78900-000 Porto Velho, RO
Brasil
Tel./Fax 55 69 217-8593
E-mail mario at unir.br
2003 Sep 02
4
extensions.conf issue
2011 Feb 26
1
Finding pairs with least magnitude difference from mean
Hi,
I have what I think is some kind of linear programming question.
Basically, what I want to figure out is if I have a vector of numbers,
> x <- rnorm(10)
> x
[1] -0.44305959 -0.26707077 0.07121266 0.44123714 -1.10323616
-0.19712807 0.20679494 -0.98629992 0.97191659 -0.77561593
> mean(x)
[1] -0.2081249
Using each number only once, I want to find the set of five pairs
where the magnitude of the differences between the mean(x) and each
pairs sum is least.
>...
2004 Apr 05
0
Selecting Best Regression Equation : leaps() in R and stepwise() in S+
Dear all,
First of all - thanks to the R-users who replied my previous mail
"Selecting Best Regression Equation". However, seems i've got some other
problems now -
My data in c:\leafbrn.txt file is-
--------------------------------------
i x1 x2 x3 y
1 3.05 1.45 5.67 0.34
2 4.22 1.35 4.86 0.11
3 3.34 0.26 4.19 0.38
4 3.77 0.23 4.42 0.68
5 3.52 1.10 3.17 0.18
6 3.54 0.76 2.76 0.00
7 3.74 1.59 3.81 0.08
8 3.78 0.39 3.23 0.11
9...
2016 Nov 03
2
how to install postgresql ip4r
ok, so I removed the default postgresql install and installed it from
the software collections..
following the instructions at
https://www.softwarecollections.org/en/scls/rhscl/rh-postgresql95/
and I get this
[root at home1p /home/jason]$scl enable rh-postgresql95 bash
[root at HOME1P jason]# postgresql-setup --initdb
* Initializing database in '/var/opt/rh/rh-postgresql95/lib/pgsql/data'
* Initialized, logs are in
/var/lib/pgsql/initdb_rh-postgresql95-postgresql.log
[r...
2005 Jan 29
1
Cyrus IMAP crashes after reading /etc/krb5.conf
Hello!
I'm trying to configure a freshly built mail/cyrus-imapd22 to work and
authenticate accounts -- Kerberos and plain text.
The GSSAPI authentication works already. After doing kinit, I can do ``imtest
-m GSSAPI hostname'' and it succeeds.
Now I'm trying to login with plain text (over SS...
2003 Nov 27
1
[PATCH] do not use -R on ppc to link shared objects
...MCONFIG 2003/11/27 15:04:16
@@ -24,3 +24,4 @@
# This address needs to be reachable using normal inter-module
# calls, and work on the memory models for this architecture
SHAREDFLAGS = -Ttext 0x01000200
+LD_SOLIB_FLAGS = -R
--- klibc/arch/cris/MCONFIG
+++ klibc/arch/cris/MCONFIG 2003/11/27 15:04:19
@@ -9,3 +9,4 @@
OPTFLAGS = -Os -fomit-frame-pointer
BITSIZE = 32
+LD_SOLIB_FLAGS = -R
--- klibc/arch/i386/MCONFIG
+++ klibc/arch/i386/MCONFIG 2003/11/27 15:04:21
@@ -30,3 +30,4 @@
# calls, and work on the memory models for this architecture
# 96 MB - normal binaries start at 128 MB
SHAREDFL...
2004 Sep 10
3
patches for flac build
Hello,
I recently built FLAC 0.10 in NetBSD 1.5 i386 and had to make minor changes
to the build configuration. Thanks for the awesome software!
libtool would not link the "plain" nasm-generated object files for the i386
assembly optimizations. I've patched src/libFLAC/i386/Makefile.am to
operate similarly to the automake file used for the SDL assembly routines.
I saw a post to the FLAC mailing list saying that automake expects the
suffix to be .s, so .nasm files were renamed to .s files. automake
can be told to accept other suffixes usin...
2007 Aug 07
1
pkgconfig fix for nut
...is a circularity, as you could not find the
location of the pkgconfig data without reading the pkgconfig data
first.
For this reason, our default behavior is to install the pkgconfig data
in a place where it can definitely be found, regardless of where NUT
is installed.
The installer who doesn't like this can override it with
--with-pkgconfig-dir.
There are also situations where you would not want to install
pkgconfig support at all. One cannot assume that all systems where NUT
runs are a Linux PC, or even a GNU system. NUT runs in a lot of
places, mostly servers. Some of them can be v...
2004 Sep 10
2
XMMS plugin build fix
...sent a bad patch for this one already, which used a _LIBS
> variable.
> There is no _LIBS variable. :-) So, the .la file should be specified
> directly
> in _LIBADD, with no linker flag syntax. libtool will figure it out.
>
> diff -u -r1.1.1.1 Makefile.am
> --- Makefile.am 29 Jan 2001 18:13:29 -0000 1.1.1.1
> +++ Makefile.am 21 Jun 2001 19:27:31 -0000
> @@ -9,5 +9,5 @@
>
> xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
> libxmms_flac_la_SOURCES = plugin.c
> -libxmms_flac_la_LIBADD = -L$(top_builddir)/src/libFLAC/.libs -lFLAC
> @XMMS_LIBS@
&g...
2012 Feb 06
1
multiple comparisons in nested design
...) -> var(epsilon) + n sigma2_B
Sum (x_ijl - mean(x)_ij)2 / (abn-ab) -> var(epsilon)
Dates for the execution of a example:
#> Mesures <- as.data.frame(matrix(rnorm(45*1, mean=10, sd=1), ncol=1))
#> colnames(Mesures) <- "VR"
#> Mesures$trat <- as.factor(rep(1:5,rep(9,5)))
#> Mesures$patient <- as.factor(rep(1:15,rep(3,15)))
The Analysis of Variance could be:
#> AnovaModel.1 <-aov(VR ~ trat + trat/patient, data=Mesures)
#> summary(AnovaModel.1)
Df Sum Sq Mean Sq F value Pr(>F)
trat 4 1.580 0.3950 0.751 0.565
trat:...
2016 Nov 03
0
how to install postgresql ip4r
On 11/3/2016 7:58 AM, Jason Welsh wrote:
> ok, so I removed the default postgresql install and installed it from
> the software collections..
>
> following the instructions at
>
> https://www.softwarecollections.org/en/scls/rhscl/rh-postgresql95/
the best way to install postgresqol, imho, is from the
yum.postgresql.com respoitory run by the postgresql development group.
you get your choice of any of the active versions (9.2, 9.3, 9.4, 9,5,
and now 9.6), it has almost all of the add-ons available at your
fingertips via yum, and its w...
2004 Sep 10
1
plugin_xmms/Makefile.am incorrectly references .libs directory
When linking against a libtool library, you should simply specify it on the
libtool command line as you would a library or an object file. Nothing should
ever reference the .libs directory directly.
diff -u -r1.1.1.1 Makefile.am
--- Makefile.am 2001/01/29 18:13:29 1.1.1.1
+++ Makefile.am 2001/06/14 20:13:20
@@ -9,5 +9,6 @@
xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
libxmms_flac_la_SOURCES = plugin.c
-libxmms_flac_la_LIBADD = -L$(top_builddir)/src/libFLAC/.libs -lFLAC @XMMS_LIBS@
+libxmms_flac_la_LIBS = $(top_builddir)/src/libFLAC/libFLAC....
2003 Jul 20
1
Problem with packages...
Hi, I just installed the last version of R taken from the CRAN mirron in
University of Vi?osa, Brasil. Since I use Mandrake 9.1 I get the proper .rpm
file. I installed fine and all the test runs OK.
I tryied to install sevela packages ussing the
install.packages("package.name")
and the installation runs OK... apparently.
However, when I try to use the new package I get the following message for all
them (in t...
2009 Oct 06
0
Interpolation
...interpolate precipitation data for a natural park. I have precipitation data from some climate stationts. (I know the table is not complete but I only need to show you X,Y, Altitude and PrepJul)
X
Y
Altitude
PrepJan
PrepFeb
PrepMar
PrepAp
PrepMay
PrepJun
PrepJul
597706
4093438
41
0
9
77,8
63,1
17,5
0
2,6
597535
4088967
202
0
11,3
67,9
70,8
12,1
0
0,6
572307
4064892
41
1
9,5
22
40,5
2,5
0
0
571059
4074743
50
2,4
13,9
31,3
63,3
8,1
0
1,4
570795
4091537
356
0...
2004 Dec 05
1
Mysql-cdr
Hi;
I have problem inserting cdr to mysql,Asterisk has logged to asteriskcdrdb successfully.It says:
Dec 6 13:36:26 DEBUG[1221985728]: cdr_addon_mysql.c:178 mysql_log: cdr_mysql: inserting a CDR record.
Dec 6 13:36:26 DEBUG[1221985728]: cdr_addon_mysql.c:197 mysql_log: cdr_mysql: SQL command as follows: INSERT INTO cdr
(calldate,clid,src,dst,dcontext,channel,dstchannel,lastapp,lastdata,duration,billsec,disposition,amafla...
2015 Mar 06
0
[klibc:master] add-mips64-support-arch-mips64-specific
Commit-ID: 3438d861da2e6939a6b0d454ffe247c19ead5993
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=3438d861da2e6939a6b0d454ffe247c19ead5993
Author: Dejan Latinovic <Dejan.Latinovic at imgtec.com>
AuthorDate: Thu, 5 Mar 2015 16:51:45 -0800
Committer: H. Peter Anvin <hpa at linux.intel.com&...
2020 Jul 24
0
[PATCH v5 75/75] x86/sev-es: Check required CPU features for SEV-ES
...rch/x86/boot/compressed/sev-es.c | 3 +++
arch/x86/kernel/sev-es-shared.c | 15 +++++++++++++++
arch/x86/kernel/sev-es.c | 3 +++
5 files changed, 24 insertions(+), 6 deletions(-)
diff --git a/arch/x86/boot/compressed/cpuflags.c b/arch/x86/boot/compressed/cpuflags.c
index 6448a8196d32..0cc1323896d1 100644
--- a/arch/x86/boot/compressed/cpuflags.c
+++ b/arch/x86/boot/compressed/cpuflags.c
@@ -1,6 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
-#ifdef CONFIG_RANDOMIZE_BASE
-
#include "../cpuflags.c"
bool has_cpuflag(int flag)
@@ -9,5 +7,3 @@ bool has_cpuflag(int fl...
2010 Jul 16
0
Mixed Conditional Logit with nested data
...specified and produces some intuitive results. Even with only 4 respondents, there appears to be a tendency for patients to prefer treatments with a low chance of side effects, a short duration of side effects, and a low severity of side effects.
The only problem is that the current setup doesn't seem to address the fact that I have multiple discrete choice tasks within each respondent. It seems to me that knowing which option person 1 chose in task 1 might also indicate something about their responses in the other conjoint tasks and that my model doesn't account for this lack of stat...