I have made a program to plot the time domain signal of a wav file and its FFT using C# and Matlab.
The link to the application is ...
http://www.mediafire.com/download.php?2e06a68w5supcg9
The application was built without errors but, I am having an unexpected exception regarding loading of an assembly file.
Please help me remove that exception.
I forgot to add the m-file in the folder.
The code of the Matlab func is :
% Reading the wav-file ....
% 'a' is a string that represents the path of the *.wav file
function read_aud(a)
[y f] = wavread(a);
t = 0:1/f:(length(y)-1)/f;
plot(t, y), grid on;
n = length(y)-1;
t1 = 0:f/n:f;
fou = abs(fft(y));
figure, plot(t1,fou), grid on;