Can any one tell me how i convert analoge signal (Excel file captured from data aquisiton system) to digital form by Matlab

回答 (2 件)

ES
ES 2014 年 4 月 11 日
do an xlsread and get the data from Excel File.
Clean Data if needed (removing NaN etc)
Write a quantizer to get digital signals!!
eg:
SignalLowLimit=-10;
SignalHighLimit=10;
NoOfLevels=32;
LevelWidth=(SignalHighLimit-SignalLowLimit)/NoOfLevels;
then run a forloop over your signal, check the value+-LevelWidths and convert it to binary use dec2bin
Walter Roberson
Walter Roberson 2014 年 4 月 11 日
If it is in an Excel file in captured form then it is already in digital form. See xlsread() to read the file.

カテゴリ

ヘルプ センター および File ExchangeData Import from MATLAB についてさらに検索

質問済み:

2014 年 4 月 11 日

回答済み:

2014 年 4 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by