0
votes
2answers
111 views
How to compute ifft from fft?
Hello,
I've done a fft to get fundamental frequency in real time and to implement high and low pass filters.
Now I want to be able to record to a .wav file after I apply a filter.
First I'll have …
2
votes
3answers
124 views
How can I invert a regular expression in JavaScript?
I have a string A and want to test if another string B is not part of it. This is a very
simple regex whose result can be inverted afterwards.
I could do:
/foobar/.test('foobar@bar.de')
and …
0
votes
3answers
110 views
Invert function: base 38 conversion
Hello!
Can you tell me how the invert function for the following PHP function is?
<?php
function id2secure($old_number) {
$alphabet_en = '1357902468acegikmoqsuwybdfhjlnprtvxz-_';
$new_number = …
1
vote
3answers
303 views
Inverting a colour (or color for our trans-atlantic cousins)? (c#)
Hi,
I know that this won't directly invert a colour, it will just 'oppose' it. I was wondering if anyone knew a simple way (a few lines of code) to invert a colour from any given colour?
At the …
