about data acquisition tool

조회 수: 1 (최근 30일)
Usman
Usman 2013년 7월 27일
i write a matlab code to take input though sound card. When i run this code i get 2 type of error in two different PC,s Please help me for this any one Code is this
AI=analoginput('winsound');
addchannel(AI,1);
Fs = 8000;
set(AI,'SampleRate',Fs)
duration = 2;
set(AI,'SamplesPerTrigger',duration*Fs);
start(AI);
data=getdata(AI);
delete(AI)
xfft = abs(fft(data));
mag = 20*log10(xfft);
mag = mag(1:end/2);
[ymax,maxindex]=max(mag);
When i Run this I get this error
Error
??? Error: "data" was previously used as a variable,
conflicting with its use here as the name of a function or command.
See MATLAB Programming, "How MATLAB Recognizes Function Calls That
Use Command Syntax" for details.
This error in old pc and second error in new pc is this
??? Error using ==> playsnd
Frequency must be a scalar
Error in ==> sound at 58
playsnd(y,fs,bits);
  댓글 수: 1
Walter Roberson
Walter Roberson 2013년 7월 27일
The code you show us does not have any call to playsnd() . Perhaps your actual code is longer than this?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Simultaneous and Synchronized Operations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by