Search found 1730 matches
- Sat Apr 13, 2013 7:58 am
- Forum: Nyquist
- Topic: elementary snd-fft question
- Replies: 21
- Views: 6632
Re: elementary snd-fft question
The value 1020 is nowhere mentioned but you can take for granted that it is true. I've stumbled over it only per Chance. If it is useful for your Analysis to take odd numbers, do so. For example: to inspect a Signal for 60 Hz hum, it is ideally to take an window size of 735 (at 44.1 kHz) because eac...
- Sat Apr 13, 2013 5:31 am
- Forum: Nyquist
- Topic: elementary snd-fft question
- Replies: 21
- Views: 6632
Re: elementary snd-fft question
Frame size and window size are identical. 32 samples return 32 coefficients. The frequencies are samplerate/window size Hz apart (from DC to Nyquist). But as you've mentioned earlier, snd-fft grabs always chunks of 1020 samples (equal to the destructive effect of snd-fetch). Or are you refferring to...
- Sat Apr 13, 2013 2:52 am
- Forum: Nyquist
- Topic: elementary snd-fft question
- Replies: 21
- Views: 6632
Re: elementary snd-fft question
I can't follow you. The calculated value from the mentioned code (only from one Frame), which you describe as RMS is just the Amplitude for any given frequency, and this is of course directly comparable with a scaler. It is only written in linear form, i.e. 0.5 = -6 dB. Maybe this will help you more...
- Sat Apr 13, 2013 1:12 am
- Forum: Nyquist
- Topic: elementary snd-fft question
- Replies: 21
- Views: 6632
Re: elementary snd-fft question
The FFT-mod (FM) example has somewhat hidden the code to calculate from real cosine/sine to amplitude (/phase).
- Fri Apr 12, 2013 8:27 pm
- Forum: Nyquist
- Topic: elementary snd-fft question
- Replies: 21
- Views: 6632
Re: elementary snd-fft question
That's about right.
To me, objects of this Kind are bad because they do not allow random Access (compare the Show coeffs functions). The objects have always to be gone thru from start to end, no matter which Frame you want to inspect.
To me, objects of this Kind are bad because they do not allow random Access (compare the Show coeffs functions). The objects have always to be gone thru from start to end, no matter which Frame you want to inspect.
- Fri Apr 12, 2013 8:13 pm
- Forum: Nyquist
- Topic: Zero crossings -- Help me, Robert (or steve)
- Replies: 11
- Views: 3720
Re: Zero crossings -- Help me, Robert (or steve)
"Neither of the above is right" or all...
You've mixed up two different functions:
- (sref-inverse)
- (snd-inverse)
The former searches for the first appearance of a value and Returns the time index.
The latter constructs lookup-tables.
snd-inverse is not used by the Zero crossing detection.
You've mixed up two different functions:
- (sref-inverse)
- (snd-inverse)
The former searches for the first appearance of a value and Returns the time index.
The latter constructs lookup-tables.
snd-inverse is not used by the Zero crossing detection.
- Fri Apr 12, 2013 7:57 pm
- Forum: Nyquist
- Topic: Elementary question, include files
- Replies: 12
- Views: 4211
Re: Elementary question, include files
The init.lsp file is recommended for this Task:
Code: Select all
; init.lsp -- default Nyquist startup file
(load "nyinit.lsp" :verbose nil)
; add your customizations here:
; e.g. (setf *default-sf-dir* "...")
; (load "test.lsp")
- Fri Apr 12, 2013 7:27 pm
- Forum: Nyquist
- Topic: Zero crossings -- Help me, Robert (or steve)
- Replies: 11
- Views: 3720
Re: Zero crossings -- Help me, Robert (or steve)
The Zero variable is not used because the function is only an extract from a greater script. It is initially used to extent s by a Zero sample. This is necessary because integrate doesn't otherwise return the last running sum for the Signal it is fed with. The internal integrate function has some pe...
- Thu Apr 11, 2013 2:13 am
- Forum: Windows
- Topic: Preferences: Keyboard dialog misbehavior
- Replies: 2
- Views: 765
Re: Preferences: Keyboard dialog misbehavior
Those keys are assigned to Keep the dialogs accessible.
And the tab key is the most important of them all, without it, we couldn't find our way through the different fields.
And the tab key is the most important of them all, without it, we couldn't find our way through the different fields.
- Sun Apr 07, 2013 3:17 pm
- Forum: Windows
- Topic: How to play frequencies in a row
- Replies: 12
- Views: 1813
Re: How to play frequencies in a row
Sorry, I Forget sometimes that not all users are familiar with the Nyquist prompt. It is a simple Interpreter for the LISP Derivate language Nyquist. It is fairly easy and can handle almost every Audio Problem, although it is rather intended for Sound Synthesis. The prompt is the test Portal for cod...