convert ppg signal into visible graph
조회 수: 1 (최근 30일)
이전 댓글 표시
I am given a mat file with row wise data samples of a PPG signal with last column as target labels (0 and 1), I should convert this to visibility graph
I am given the following mat file:-
댓글 수: 0
채택된 답변
Chandra
2022년 5월 25일
Hi,
use this code to plot the values on graph
load('all_subjects (1).mat');
for i = 1:219 %change the range depending on requirement(eg. i = 1:10)
A = cell2mat(C(i));
plot(A);
hold on; %it is used to plot all graphs on one figure,it can be changed to figure if it needed in different figures
end
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!