Do FFT to audio signal that record by using arduino
2 次查看(过去 30 天)
显示 更早的评论
Haii. I am using arduino nano to record audio and save it in .wav format file. All I know is arduino only show positif amplitudo signal like the picture below, and it doesn't like the other audio signal that has positif and negatif value. Can I use the signal to find the frequency domain using FFT? Or is there any ways to prosess the signal so it can looks like the other audio signal?
Can anyone please tell me how to solve it, Thank you

This is the code that i used :
clc;
close all;
clear all;
[audio, fs] = audioread('3.wav');
x = (audio+1);
subplot(2,1,1);
plot(x);
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!