Displaying 2 results from an estimated 2 matches for "indagate".
Did you mean:
indagar
2006 Feb 22
1
Some aditional details about split_cb_search_shape_sign
Hi all.
I'm starting to study how speex works because I would like to understand in deep how a CELP coder/decoder works.
I have some difficult understanding the vector quantization performed in the split_cb_search_shape_sign function. It's a bit hard to understand.
Could you please explain me the algorithm step by step?
I'm indagating the 5950 bps narrowband.
Thank you.
Gio.
2010 Nov 16
4
Simple error handling in R
Hi R experts,
I am looking for a simple error handling approach, whereby I could stop
function execution with a customized error message. For example:
for (i in 1:10) {
if (i == 5)
# I'd like to be able to stop right here with an error message I have
complete control over
}
The problem with stop() is that I cannot control completely what gets
printed to the terminal, even with