at what data rate should i take values? and how to code for it

1 回表示 (過去 30 日間)
Amit Kadarmandalgi
Amit Kadarmandalgi 2019 年 2 月 7 日
コメント済み: Star Strider 2019 年 2 月 8 日
I am using arduino matlab along with pulse sensor and I am not satisfied with the output as I dont think I am getting dicrotic curve I have written my current code and output that I am getting and what I am hoping to get. Also will any signal processing technique improve the output. please help.
output obtained
current code:
clear all
close all
clc;
a = arduino();
%%
v=zeros(500,1);
t=seconds(v);
t0=datetime('now');
for c=1:500
v(c) = readVoltage(a,'A0');
t(c)=datetime('now')-t0;
end
%%
plot(1:c,v);
title('Vata');
expected output

回答 (1 件)

Star Strider
Star Strider 2019 年 2 月 7 日
For cardiovascular data (including EKG) recording, the minimum sampling frequency is generally considered to be 250 Hz, giving a Nyquist frequency of 125 Hz. This will capture all the necessary data, and allow for filtering and other data processing. You can always downsample the data later if you want, however you cannot create data that you did not originally record.
  8 件のコメント
Amit Kadarmandalgi
Amit Kadarmandalgi 2019 年 2 月 8 日
but is it the same for PPG sensor?
Star Strider
Star Strider 2019 年 2 月 8 日
@Amit — Try it.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeInstrument Control Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by