[VIEWED 6313
TIMES]
|
SAVE! for ease of future access.
|
|
|
jhapaliketo
Please log in to subscribe to jhapaliketo's postings.
Posted on 02-20-09 12:36
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
I HAVE BEEN GIVEN A .WAV FILE(SOUND). I HAVE TO WRITE A PROGRAM IN MATLAB THAT: 1) READS THE FILE 2) DISPLAY WAVEFORM 3)COMPUTE AND DISPLAY FREQUENCY DOMAIN
|
|
|
|
C..Ronaldo
Please log in to subscribe to C..Ronaldo's postings.
Posted on 02-20-09 12:46
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
buddieee . .. do you have to do that in the course elctronics II, i mean the upper division elective . .. we have to take matlab ... that what i took but we didnt do the wave functions that displays graph cause of limited time . . but when you open the matlab . .. just use the help button . that gives you a lot of what you want
|
|
|
C..Ronaldo
Please log in to subscribe to C..Ronaldo's postings.
Posted on 02-20-09 12:46
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Last edited: 20-Feb-09 12:51 AM
|
|
|
jhapaliketo
Please log in to subscribe to jhapaliketo's postings.
Posted on 02-20-09 1:21
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
i need a concrete program. i have no time to do all the researches.help please...........
|
|
|
madhab6
Please log in to subscribe to madhab6's postings.
Posted on 02-20-09 8:38
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
script or simulink program?
|
|
|
madhab6
Please log in to subscribe to madhab6's postings.
Posted on 02-20-09 9:49
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Here U go dude: clear all; close all; clc; % import a auio sample [y,Fs,nbit]=wavread( 'your_audio.wav'); % extract left channel only left=y(:,1); % calculate the time scale Ts=1/Fs; [nsamples,c]=size(y); tscale=0:Ts:(nsamples-1)*Ts; %plot left and right channel in time domain plot(tscale,left, 'r'); xlabel( 'Time (sec)'); ylabel( 'Amplitude'); %compute the FFT with the proper sampling frequency fmax=Fs; %how many points the FFT must be computed on? N=nsamples; tscale=0:Ts:(N-1)*Ts; %N=number of FFT points: % change it and test the different resolution fscale=linspace(0,fmax/2,floor(N/2)); spectrum=fft(left,N); %plot the spectrum of the signal using the appropriate % frequency scale and module of the coefficients %plot the magnitude figure(2); plot(fscale,abs((spectrum(1:length(fscale))))); xlabel( 'Frequency Hz') ylabel( 'Module')
|
|
|
newlynew
Please log in to subscribe to newlynew's postings.
Posted on 02-20-09 9:59
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
ha ha.. I feel sorry for people coming here seeking someone to do their assignments for them. A little help/hits are fine but getting someone else to do it bothers me. You should just drop out of school if you are not prepared to spend time learning.
|
|
|
madhab6
Please log in to subscribe to madhab6's postings.
Posted on 02-20-09 12:22
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
JHAPALIKETO, at least appreciate the work done for you
|
|
|
Khairey
Please log in to subscribe to Khairey's postings.
Posted on 02-20-09 1:14
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Dude ! somewhere in the code just write that "I have cheated in this assignment". I bet, this guy will submit as it is and he will be caught. haha
|
|
|
jhapaliketo
Please log in to subscribe to jhapaliketo's postings.
Posted on 02-22-09 11:22
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
madhab6, i really appreciate your help and everyone, time nabhayera maile yo thread herna bhai raheko thiyina. thanks buddy
|
|