Search found 1730 matches
- Mon Apr 22, 2013 7:32 am
- Forum: Nyquist
- Topic: Questions about convolve
- Replies: 18
- Views: 5787
Re: Questions about convolve
So you want to built up a Kind of power spectrum density function. But instead of equal distanced bins you want one that is in octaves. I believe /3 and /7 octave is quite common for sonargrams. The first part is clear so far, White noise should have an flat spectrum with the same energy in all freq...
- Mon Apr 22, 2013 6:44 am
- Forum: Nyquist
- Topic: Elementary question, include files
- Replies: 12
- Views: 4211
Re: Elementary question, include files
I do it in a similar way. But I put the files into the Nyquist Folder.
They are not found in the Plug-Ins Folder.
But I use those files anyway only in the Nyquist prompt.
They are not found in the Plug-Ins Folder.
But I use those files anyway only in the Nyquist prompt.
- Mon Apr 22, 2013 5:39 am
- Forum: macOS
- Topic: Does normalizing require upconverting to preserve quality?
- Replies: 40
- Views: 7559
Re: Does normalizing require upconverting to preserve qualit
I wouldn't say that. When you Import the file and do nothing, with the actual sample values, then dithering is not necessary. On the other Hand, any effect that you apply in 32 bit mode will produce sample values in that range to form smooth curves. As soon as you reconvert to 16 bit, the curvature ...
- Sun Apr 21, 2013 9:48 pm
- Forum: Nyquist
- Topic: Questions about convolve
- Replies: 18
- Views: 5787
Re: Questions about convolve
Lowpass filters are used in all Kinds of data gathering and analysis.
Your Graphs don't mean anything to me, I can't see them and therefore I can't help you in this direction.
Your Graphs don't mean anything to me, I can't see them and therefore I can't help you in this direction.
- Sun Apr 21, 2013 9:40 pm
- Forum: Nyquist
- Topic: How to hang the nyquist prompt in an infinite loop
- Replies: 2
- Views: 1491
Re: How to hang the nyquist prompt in an infinite loop
I hope you don't want to create one or more Topics for each Crash/Problem you Encounter in Nyquist?
This could very well end up in a life-long occupation.
Write them down and summarize them on every thousandth occurancy.
The Picture gets sometimes clearer with some distance.
This could very well end up in a life-long occupation.
Write them down and summarize them on every thousandth occurancy.
The Picture gets sometimes clearer with some distance.
- Sun Apr 21, 2013 4:21 pm
- Forum: macOS
- Topic: Problem changing pitch
- Replies: 3
- Views: 743
Re: Problem changing pitch
You can try a half step value of
-0.317667
-0.317667
- Sun Apr 21, 2013 3:33 pm
- Forum: Nyquist
- Topic: Questions about convolve
- Replies: 18
- Views: 5787
Re: Questions about convolve
Why not a lowpassfilter? Or the simpler snd-avg with a few sample average and 1 sample advance. I believe I've posted a simple lowpass filter example in the convolution DSP Topic in this subforum. It also contains a window function (hamming or blackman, don't remember) that you've not implemented so...
- Sun Apr 21, 2013 8:18 am
- Forum: Nyquist
- Topic: Basic Lisp question about short circuit evaluation
- Replies: 2
- Views: 2534
Re: Basic Lisp question about short circuit evaluation
Maybe you should offer some more Details. It is not clear what you mean. (defun myeval (exp env) (princ "exp: ") (print exp) (princ "env: ") (print env) (evalhook exp #'myeval NIL env)) (setq *evalhook* #'myeval) (setf a t) (if a (print "true") (error "stop")) the code not even indicates that the el...
- Sun Apr 21, 2013 7:48 am
- Forum: Nyquist
- Topic: Questions about convolve
- Replies: 18
- Views: 5787
Re: Questions about convolve
Do you use it to identify certain sounds? ([auto-]correlation) or for a FIR filter?
- Sun Apr 21, 2013 3:41 am
- Forum: Nyquist
- Topic: Questions about convolve
- Replies: 18
- Views: 5787
Re: Questions about convolve
convolution is only faster for Responses under about 64 Tabs. In all other cases, FFT is prefered. The fft must be taken of both signals and the window length equal to (n+m)-1 (zero-padded). Convolution is equal to the multiplication of the two Frames. For longer sequences, STFT is used with an corr...