help Using vb.net to perform fast fourier transform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am doing a Digital signal processing project using VB.net and need advance
maths function and also signal processing function such as fast fourier
transform. Can anyone advice me on how do I get a FFT function?

Thanks for any reply.
 
Hi,

Maybe this will help.
http://www.csharphelp.com/archives/archive284.html

Ken
---------------
I am doing a Digital signal processing project using VB.net and need advance
maths function and also signal processing function such as fast fourier
transform. Can anyone advice me on how do I get a FFT function?

Thanks for any reply.
 
Have you any idea how funny this is? I've been searching, reading papers
and scrawling through Numerical Recipies in C to get a good working
implementation of FFT and you go and post a link to one in C#.

Thanks.
 
Thanks Ken, this may sound ignorant but can I use this code in vb.net or I
must use it in C# .net?

Sorry for any inconvenience caused.
 
Charles,

Know that you can add anytime a C# project to your project as a class
library project.
Add it than using the class using project->reference->project to your VB
application.
And it is a part of your VB application.

(You have to watch that the C# program is well written confirm the Net
conventions. By instance not two public datanames only distinct by the uper
and lower case)

Just as an addition.

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top