Displaying 20 results from an estimated 64 matches for "testy".
Did you mean:
test
2011 May 04
2
speexenc/speexdec doubles file size
this is not really a development question, but i didn't find another
mailing list to ask it.
any idea why size of wav file doubles when it is encoded to speex and
back to wav:
$ ls -ls testi.wav
40 -rw-r--r-- 1 foo foo 40674 May 4 14:38 testi.wav
$ speexenc --denoise --agc --quality 10 testi.wav testi.spx
Encoding 8000 Hz audio using narrowband mode (mono)
$ ls -ls testi.spx
20
2011 May 04
0
speexenc/speexdec doubles file size
Juha Heinanen writes:
> any idea why size of wav file doubles when it is encoded to speex and
> back to wav:
>
> $ ls -ls testi.wav
> 40 -rw-r--r-- 1 foo foo 40674 May 4 14:38 testi.wav
>
> $ speexenc --denoise --agc --quality 10 testi.wav testi.spx
> Encoding 8000 Hz audio using narrowband mode (mono)
>
> $ ls -ls testi.spx
> 20 -rw-r--r-- 1 foo foo 16405
2017 Dec 29
3
Writing text files out of a dataset
Hello,
I am trying to run the following syntax for all cases within the dataframe
"data"
d1 <- data[1,c("material")]
fileConn<-file("TESTI/d1.txt")
writeLines(d1, fileConn)
close(fileConn)
I am trying to use the for function:
for (i in 1:nrow(data)){
d[i] <- data[i,c("material")]
fileConn<-file("TESTI/d[i].txt")
2019 Apr 16
2
Sieve operation "send copy" not working since upgrade from dovecot 2.2.31-1 to 2.3.5.1-1
I hope that someone can help me here.
Software: CentOS 7.6.1810, dovecot-2.3.5.1, dovecot-pigeonhole-2.3.5.1, exim
4.91-1
Example filter:
# rule:[test]
if header :contains "subject" "meow"
{
redirect :copy "ks at ratiokontakt.de";
}
Mail log:
Apr 16 11:29:02 frontend-17 dovecot:
lmtp(testi at mrhoang.de)<25201><QPgZHF6gtVxxYgAARS1pjg>:
2017 Dec 29
0
Writing text files out of a dataset
Hello,
You have to create the vector 'd' outside the loop before using it.
d <- numeric(nrow(data))
Only then comes the loop.
Hope this helps,
Rui Barradas
On 12/29/2017 2:31 PM, Luca Meyer wrote:
> Hello,
>
> I am trying to run the following syntax for all cases within the dataframe
> "data"
>
> d1 <- data[1,c("material")]
>
2009 Jun 08
3
caret package
...sion matrix and it seems to be giving me
errors.
x<-read.csv("x.csv", header=TRUE);
y<-read.csv("y.csv", header=TRUE);
tc=trainControl(method="cv", number=10 );
glmmat<-train(x,y,method="glmnet", trControl=tc);
extractPrediction(list(glmmat,testX=x,testY = y));
any help would be great
thanks
vss
[[alternative HTML version deleted]]
2019 Apr 16
0
Sieve operation "send copy" not working since upgrade from dovecot 2.2.31-1 to 2.3.5.1-1
On 16.4.2019 13.34, Kristijan Savic - ratiokontakt GmbH via dovecot wrote:
> I hope that someone can help me here.
>
> Software: CentOS 7.6.1810, dovecot-2.3.5.1, dovecot-pigeonhole-2.3.5.1, exim
> 4.91-1
>
> Example filter:
>
> # rule:[test]
> if header :contains "subject" "meow"
> {
> redirect :copy "ks at ratiokontakt.de";
2006 Dec 13
2
persp() problem
...+sqrt(1-rhoF^2)*qnorm(0.95)),-0.3935119, 0.4227890,
0.2701648)}
z <- outer(x,y,f)
persp(x,y,z)
The R will display:
"Error in persp.default(x, y, z) : increasing 'x' and 'y' values expected"
So I try to adjust it to:
testx <- unique(sort(u1data))
testy <- unique(u2data[order(u1data)])
testf <- function(testx,testy){qgev(pnorm(rhoF*qnorm(pnorm((qnorm(testy)-rho2*qnorm(testx)/sqrt(1-rho2^2))))
+sqrt(1-rhoF^2)*qnorm(0.95)),-0.3935119, 0.4227890, 0.2701648)}
testz <- unique(outer(testx,testy,testf)[order(u1data)])
BUT SAME WARN:
"Er...
2001 Oct 23
3
Did I read correctly?
Is it possible to run MS Word on a LInux box without Windows installed?
If so, would someone be willing to help me get it running?
I would like to use MS Word ver 7, but want nothing to do with Windoze.
Word Perfect 8 for Linux can get testy at times.
cedric
2013 Nov 26
0
Budete mit erekci, kdy se Vam zachce
Nav?tivte na?e webov? str?nky infotigra
a objevte, jak JEDNA jedin? mal? modr? pilulka m??e do?ivotn? zm?nit VA?I sexu?ln? v?konnost!
?
V??en? z?kazn?k! V?deck? testy prok?zaly, ?e TIGRA funguje l?pe ne? jak?koli jin? pilulka. Test na 800 mu??ch ve v?ku 21 a? 80 let prok?zal ohromuj?c? v?sledky:
?
1. A? o 71 % siln?j?? touha
2. A? o 94 % lep?? schopnost orgasmu...
2013 Nov 08
1
Different output from lm() and lmPerm lmp() if categorical variables are included in the analysis
...ction will behave identically to lm()
if the following parameters are set: perm="", seq=TRUE,
center=FALSE.")
But not in the case of including categorical variables:
require(lmPerm)
set.seed(42)
testx1 <- rnorm(100,10,5)
testx2 <- c(rep("a",50),rep("b",50))
testy <- 5*testx1 + 3 + runif(100,-20,20)
test <- data.frame(x1=testx1,x2=
testx2,y=testy)
atest <- lm(y ~ x1*x2,data=test)
aptest <- lmp(y ~ x1*x2,data=test,perm = "", seqs = TRUE, center = FALSE)
summary(atest)
Call:
lm(formula = y ~ x1 * x2, data = test)
Residuals:
Min...
2016 Sep 18
2
Problem Samba 4.5
thanks for your attention.
temporarily with the following script I'm looking at myself.
#!/bin/bash INTERVAL=180 LOG=true function log { if $LOG; then echo $1 fi }
while true; do testx=`ps -auxw | grep "smbd" | wc -l` testy=`netstat -ap |
grep samba | grep sock | wc -l` if test "$testx" -gt "50" -a "$testy" -gt
"50" ;then echo "samba problem" service samba restart else echo "samba no
problem" fi sleep $INTERVAL done
2016-09-18 2:17 GMT+03:00 Andrew Bartlet...
2008 Jul 17
2
problems with validation on STI
I have the following STI table:
def self.up
create_table :distributions do |t|
t.string :type
t.integer :simulation_id
t.string :dist_name
t.string :desc, :default=> ''fixed''
t.float :param1, :default => 5.0
t.float :param2, :param3
t.timestamps
#fields for RscDist
t.integer :resource_id
#fields for LoadDist
2013 Feb 18
2
mtext unicode failure
Readers,
How to solve this unicode input error please?
> postscript("~/tmp/test.eps",width=100/25.4,height=100/25.4,horizontal=FALSE,onefile=TRUE,paper="special")
> testx<-seq(1:5)
> testy<-seq(1:5)
> plot(testy~testx)
> mtext('text (O?)\n more text',side=3,line=1)
Warning messages:
1: In mtext("text (O?)\n more text", side = 3, line = 1) :
conversion failure on 'text (O?)' in 'mbcsToSbcs': dot substituted for <e2>
2: In mtext("...
2005 Feb 01
2
assign connections automatically
...function, but not
inside, using assign. I'm sure I'm missing something obvious about the
inherent properties of functions.....
#first six lines just setup for this example
> x<-1:20
> y<-20:40
> z<-40:60
> write(x, file="testx.txt")
> write(y, file="testy.txt")
> write(z, file="testz.txt")
> inConnect <- function(){
+ fn <- dir(pattern="*.txt") # grab only *.txt files
+ fn2 <- gsub('.txt', "", fn) # removes the '.txt' from each string
+ for(i in 1:length(fn))
+ assign((fn2[[i]]),file...
2006 Jul 23
1
Complex MySQL query in dovecot-sql.conf
Is there some limit for the maximum length of the line in dovecot-sql.conf?
In particular, I would be writing a long MySQL password query.
And further, can a long line be somehow split to several pieces? I tried the
common unix-style way of putting backslash as the last character of the
first line, but it results in an error immediatedly while restarting
Dovecot (while parsing the conf, ie. not a
2018 Aug 29
2
Setting up port forwarding to guests on nat network
...Virtd Version: 4.0.0
Here’s the contents of /etc/libvirt/hooks/qemu
#!/bin/bash
# IMPORTANT: Change the "VM NAME" string to match your actual VM Name.
# In order to create rules to other VMs, just duplicate the below block and configure
# it accordingly.
if [ "${1}" = "testy" ]; then
# Update the following variables to fit your setup
GUEST_IP='10.128.10.100'
GUEST_PORT='22'
HOST_PORT='2588'
if [ "${2}" = "stopped" ] || [ "${2}" = "reconnect" ]; then
/sbin/iptables -D FORWARD...
2024 Jan 21
1
Running VMware ESXi network installer via syslinux/menu
On 1/20/2024 1:29 AM, Ralph Ronnquist via Syslinux wrote:
> On Sat, Jan 20, 2024 at 12:21:37AM +0100, marki via Syslinux wrote:
>> Hello,
>>
>> So I'm running syslinux.efi
>> Which loads menu.c32
>> Which is supposed to start ESXi's bootx64.efi/mboot.efi
>>
>> But that gives
>>
>> """
>> Loading mboot.efi... ok
2005 Jun 11
2
multiple authentication mechanisms, many problems
dovecot: Jun 11 23:57:56 Info: auth(default):
pam(testi at irkkaa.net,83.145.196.129): pam_authenticate() failed:
Authentication failure
tried also debugging whats wrong with it, it queries ok, the password in
the query is ok and everything. but it never replies +OK.
that connection just halts after PASS command. Tried IMAP, same result.
config: (dovecot.conf, PLAIN etc all enabled)
passdb
2008 Aug 13
2
Tiny help for tiny function
I just started to write tiny functions and therefore I appologise in advance
if I am asking stupid question.
I wrote a tiny function to give me back from the original matrix, a matrix
showing only the values smaller -0.8 and bigger 0.8.
y<-c(0.1,0.2,0.3,-0.8,-0.4,0.9)
x<-c(0.5,0.3,0.9,-0.9,-0.7,0.3)
XY<-rbind(x,y)
extract.values<-function (x)
{
if(x>=0.8|x<=-0.8)x