search for: sampv

Displaying 2 results from an estimated 2 matches for "sampv".

Did you mean: samp
2009 Mar 02
3
Help with Wilcoxon Test
Hi I have 2 sets of data that I want to do a Wilcoxon test on. They are of the same dimension. One has 4 zero values and the other has 5. > dim(SampA) [1] 1 10 > dim(SampV) [1] 1 10 I get the folowing error Error in wilcox.test.default(SampA, SampV, na.rm = TRUE, paired = FALSE, : 'x' must be numeric I am using the function wilcox.test(SampA, SampV, na.rm=TRUE, paired=FALSE, conf.level=0.95)
2019 Jul 15
0
How to enable OPUS inband FEC
...aybackrate=8000;maxaveragebitrate=24000;sprop-stereo=1;cbr=1;useinbandfec=1;usedtx=1) opus: encode bw=narrow bitrate=24000 fch=auto vbr=0 fec=1 expected loss=30 dtx=1 complex=10 At the decoder side when a packet is lost I call the decoder with the next params: opus_decode(ads->dec, NULL, 0, sampv, (int)(*sampc/ads->ch), 0); and set the flag packet_lost=true; When I receive the next packet, I'm trying to decode the packet with decode_fec = 1 and then the same packet with decode_fec = 0: In the code below, suggest to replace ‘ads->ch’ with ‘numChannels’ to make it more clear to...