User defined FFT function parameter not recognized
显示 更早的评论
Hi All
I am trying to use the FFT function explained in this link
but when I use a nx2 signal and a scalar value for ScanRate I get an error :
Shall someone tell why isnt the function getting my input value
Unrecognized function or variable 'ScanRate'.
% function [frq, amp, phase] = simpleFFT( signal, ScanRate)
% Purpose: perform an FFT of a real-valued input signal, and generate the single-sided
% output, in amplitude and phase, scaled to the same units as the input.
%inputs:
% signal: the signal to transform
% ScanRate: the sampling frequency (in Hertz)
% outputs:
% frq: a vector of frequency points (in Hertz)
% amp: a vector of amplitudes (same units as the input signal)
% phase: a vector of phases (in radians)
function [frq, amp, phase] = simpleFFT( signal, ScanRate)
n = length(signal);
z = fft(signal, n); %do the actual work
%generate the vector of frequencies
halfn = floor(n / 2)+1;
deltaf = 1 / ( n / ScanRate);
frq = (0:(halfn-1)) * deltaf;
% convert from 2 sided spectrum to 1 sided
%(assuming that the input is a real signal)
amp(1) = abs(z(1)) ./ (n);
amp(2:(halfn-1)) = abs(z(2:(halfn-1))) ./ (n / 2);
amp(halfn) = abs(z(halfn)) ./ (n);
phase = angle(z(1:halfn));
3 个评论
Image Analyst
2020-11-29
Show us how you instantiated the arguments that you passed in, and the line of code where you actually called the function with those variables.
You didn't just click the green Run triangle did you? Because that's a function where it won't run unless you pass in input arguments, which clicking the green run triangle won't do - it has no idea what you'd want for those variables.
farzad
2020-11-29
farzad
2020-11-29
回答(1 个)
John D'Errico
2020-11-29
编辑:John D'Errico
2020-11-29
How did you call the function? When you get an error, report the ENTIRE error message, everyting in red. This lets us know how you called the function.
Just because you have a variable named ScanRate in your workspace does not tell MATLAB to automatically pass it into your function.
If you want the function to see the variable, then you NEED to pass it in. Call it like this:
[frq, amp, phase] = simpleFFT( signal, ScanRate);
So you need ot pass in TWO arguments to your function. They can have any names as you pass them in, but inside the function, now ScanRate will be defined.
If you don't, well, then MATLAB will generate an error - the one you got.
类别
在 帮助中心 和 File Exchange 中查找有关 Time-Frequency Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!