📄 findbin.m
字号:
function bin = findbin(N, rate, freq)% bin = findbin(N, rate, freq)% find the bin in an FFT corresponding to a given% frequency% N is the length of the data% the sampling rate (samples/sec) of the data% the desired frequency whose bin we want to knowbin = 1+ (freq*N/rate);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -