search for: hermann

Displaying 20 results from an estimated 153 matches for "hermann".

Did you mean: herrmann
2012 Sep 24
4
serial subtraction within a vector
Hello, I have a vector (numeric) v-> c(a,b,c,d,e) and I want to create the vector n->c(b-a,c-b,d-c,e-d). How can I do that? Thank you Hermann [[alternative HTML version deleted]]
2013 May 13
0
DSPs which are suitable for porting OPUS
...t; > You can reach the person managing the list at > opus-owner at xiph.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of opus digest..." > > > Today's Topics: > > 1. opus_demo produces garbage (Hermann Weber) > 2. Re: opus_demo produces garbage (Jean-Marc Valin) > 3. Re: opus_demo produces garbage (Hermann Weber) > 4. Exact audio position (Hermann Weber) > 5. Quality difference between opus_demo.exe and opusenc.exe > (Hermann Weber) > 6. OPUS in embedded pla...
2011 Dec 21
3
Decoding only a certain frame results in different values than when decoding the entire file
...st perfect as I need them. But now when I read bytes 63 to 125 from my encoded spx and decode it, I get the values 732 9273 -799 -723 This is weird because I expected to get the encoded values -9323 -732 189 2329 I hope I could explain it well. Am I missing something here? Thank you very much. Hermann Hi Lakhdar, I am not sure if I do anything wrong with the dec state memory. Could you perhaps take a look at what I am (perhaps wrongly) doing? int __stdcall SpxDecode(unsigned char* DinBuf, float* DoutBuf, unsigned int Dinlen) { //char *testFile; //FILE *ftest; //testFile = &...
2013 Jan 03
5
count appearence of zero in a vector
...I wish to count how often zero (0) appears in the vector test. test [1] 1 1 1 1 1 1 2 1 1 1 0 2 0 1 1 0 0 0 1 1 1 0 1 2 1 1 1 1 1 1 I think of something like ... > sapply (test, function (x) if (x==0 ... ... but actually I dont know how to carry on. Could anybody give me a hint? Thanks Hermann [[alternative HTML version deleted]]
2011 Dec 23
2
Decoding only a certain frame results in different values than when decoding the entire file
My file is 3 hours long, so decoding takes around 5 minutes on an average computer. That is a bit too long unfortunately... Am 23.12.2011 20:38, schrieb Steve Checkoway: > On Dec 23, 2011, at 10:54, Hermann Weber<hermie.weber at gmx.de> wrote: > >> And how many frames does Speex need to "recover"? >> Or is that not predictable? > No idea. My guess is not predictable. You have all of the data, why not decode it all? >
2011 Dec 22
0
Decoding only a certain frame results in different values than when decoding the entire file
HI Hermann, I am not sure I understand exactly what you are trying to do. Let me try to describe what I understood (I assumed your byte array starts @ 1 and not 0 as it is supposed to be in C) : ############################## CASE 1: (output is good) ############################## - INITILIAZE_DECODER (re...
2011 Dec 23
2
Decoding only a certain frame results in different values than when decoding the entire file
...The more frames I decode before the frame that I actually want to decode, the better the quality becomes. For example when I basically want to decode frame #100, I read frame #80 to #100, and then frame 100 has the quality that I need. Why? Is there any information on this behaviour? Thank you. Hermann Am 23.12.2011 18:37, schrieb Hermann Weber: > It would be nice to get more input. > I am really lost because I am not sure what is going on here, and there > are no sources to investigate on. > > Thank you. > > Hermann > > Am 22.12.2011 20:55, schrieb Hermann Weber: &gt...
2008 Aug 04
0
[Bug 1163] new option: --show-config or similar to show configuration state (?)
https://bugzilla.mindrot.org/show_bug.cgi?id=1163 Uwe Hermann <uwe at hermann-uwe.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED...
2011 Dec 22
2
Decoding only a certain frame results in different values than when decoding the entire file
To make it complete, here is the code that I am using to encode a large file: int __stdcall SpxEncode(unsigned char* inBuf, unsigned char* outBuf, unsigned int inlen) { //char *testFile; //FILE *ftest; //testFile = "test"; //ftest = fopen(testFile, "wb"); //fwrite(inBuf,1,inlen,ftest); //take every 320 bytes //copy every short to float
2013 May 08
3
Upsampling while decoding / Updating
...kos Chantziaras: > The Opus resampler is actually a bugfixed version of the Speex one. Same > interface/API, but with the bugs removed. It's why I recommended it :-) > Otherwise I would have recommended something entirely different, like > SoXR. > > > On 07/05/13 22:12, Hermann Weber wrote: >> Dear Nikos, >> >> thank you very much for your advice! >> >> I am not a little bit new to C++, and experiments (like using another >> third party library) always turn out to be days of work for me. >> That is why I would first like to try Sp...
2003 Nov 30
2
vfs module for interpreting a script on file access
...e scriptfile; (mostly all the smb.conf "VARIABLE SUBSTITUTIONS" like %U, %I .. and so on) of course the script should do something dynamic based on this parameters. this would be ideal for real MS-DOS hosts which cannat do anything on itself ;-) i hope, i get some replies here :-) mfg hermann
2012 Sep 10
3
plot: x and y chromosomes are missing
...chromosome hz 1.5 2 If I plot fold change versus chromosome (or vice versa): plot (ch, fc) I see only the chromosomes with numbers but not those with letter (x and y). What can I do? A second question: How can I add a single line in that plot at a certain y-level. Thanks Hermann [[alternative HTML version deleted]]
2013 Mar 29
3
From a vector with characters to binary information
...ine keine 1 0 0 0 0 Erstgradverw. keine keine Erstgradverw. 0 1 0 0 1 How do I get rid off the text. Is there an alternative method? Thanks Hermann [[alternative HTML version deleted]]
2013 Oct 03
1
prcomp - surprising structure
...ess that the "columns" in my plots reflect some artefact production I hope to get some help. For the case that my use of prcomp was not okay, could you please give me instructions how to use it - including with the normalisation procedure that I need to include before doing a pca. Thanks Hermann # # mat: matrix with genotypes coded as 0,1 and 2 (columns); IDs (observations) as rows. # prcomp.snp <- function (mat) { m <- ncol (mat) n <- nrow (mat) snp.namen <- colnames (mat) for (i in 1:m) { # snps in columns...
2011 Dec 23
2
Decoding only a certain frame results in different values than when decoding the entire file
And how many frames does Speex need to "recover"? Or is that not predictable? Greetings, Hermann Am 23.12.2011 19:17, schrieb Steve Checkoway: > > On Dec 23, 2011, at 10:03 , Hermann Weber wrote: > >> I found out something: >> >> The more frames I decode before the frame that I actually want to >> decode, the better the quality becomes. >> For example w...
1998 Apr 08
1
remote subnet browsing and NT4.0SP3
...on the IPC$ share. -------------------------------------------------- Is this also true for NT4.0SP3 machines ? Does MS sync browse lists this way between two NT Servers ? Sorry if this is an FAQ - please point me the right direction. Thanks for any help/ideas and for samba. Greetings Hermann -- Hermann Lauer Bildverarbeitungsgruppe des Interdiziplinaeren Zentrums fuer wissenschaftliches Rechnen, Universitaet Heidelberg INF 368; 69120 Heidelberg; Tel: (06221)548826 Fax: (06221)548850 Email: Hermann.Lauer@iwr.uni-heidelberg.de
2013 May 13
2
Quality difference between opus_demo.exe and opusenc.exe
...exe and standard settings and then decoded it. The output had a sizzling noise, even when I used full bandwidth. I think I have played around with any of the settings in opus_demo.exe, but I just can not get these amazing results as with opusbin\opusenc.exe. What may I have missed? Thank you. Hermann
2013 Nov 08
2
making chains from pairs
...vector A B I. It is like jumping from one pair to the next related pair. So for my example test you should get: A B F G H I C F I K D L M N O P > test V1 V2 1 A B 2 A F 3 A G 4 A H 5 B F 6 B I 7 C F 8 C I 9 C K 10 D L 11 D M 12 D N 13 L O 14 L P Thanks Hermann > dput (test) structure(list(V1 = c("A", "A", "A", "A", "B", "B", "C", "C", "C", "D", "D", "D", "L", "L"), V2 = c("B", "F", "G&quo...
2009 Feb 19
2
Not answering call when queue is full or has no members
...s unacceptable because of the short duration of early media on ISDN). Is there any way to let Queue() automatically answer a channel if the call is going to be placed in the queue and will still be unanswered when the QUEUESTATUS is any of FULL, JOINEMPTY, or JOINUNAVAIL? -- Greetings, Alex Hermann
2006 Mar 21
2
transfer files only once
...an check for an extended attribut of the files which gets set if a file is the first time transfered and get skipped if the attribut is set. or is it possible to move all transfered files directly in an rsync exclude file; would have the same effect i hope somebody understand what i want ;-) mfg hermann -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 191 bytes Desc: not available Url : http://lists.samba.org/archive/rsync/attachments/20060322/35e450a8/attachment.bin