display gait cycle in matlab

조회 수: 22 (최근 30일)
NGR MNFD
NGR MNFD 2021년 9월 30일
댓글: Mathieu NOE 2021년 10월 4일
Hello friends
I have a diagram of the walking gait signal related to the left and right force signal feet of people. This signal is measured by an analog to digital converter 12 bit , so the vertical axis of this diagram is in terms of voltage and the horizontal axis is in terms of the number of samples. Now I want to know how I can change the vertical axis from voltage to force(m/s^2)? (Through what code in MATLAB?)
I use this code for display signal for neurodegenerative disease in physionet site:
fileID1=fopen('control1.let','r');
A= fread(fileID1, [3, 45000], 'uint8')'; % matrix with 3 rows, each 8 bits long, = 2*12bit
fclose(fileID1);
M2H= bitshift(A(:,2), -4);
M1H= bitand(A(:,2), 15);
PRL=bitshift(bitand(A(:,2),8),9); % sign-bit
PRR=bitshift(bitand(A(:,2),128),5); % sign-bit
M( : , 1)= bitshift(M1H,8)+ A(:,1)-PRL;
M( : , 2)= bitshift(M2H,8)+ A(:,3)-PRR;
N1 = reshape(M',[90000,1]);
subplot(2,4,1);plot(N1);title('Healthy control'); ylabel('left force');

답변 (1개)

Mathieu NOE
Mathieu NOE 2021년 9월 30일
hello
this is not really a matlab question ...
you have to know the sensivity of the sensor - whatever you measure , you need that info to go from measurement (voltage) to physical units. pay also attention to any device that modify the gain of the acquisition chain (signal amplifiers, ADC gain and so forth)
NB : m/s² is the unit of acceleration, not force (Newtons or pounds or ...)
at the end , it's just a gain factor to apply on your y data
  댓글 수: 10
NGR MNFD
NGR MNFD 2021년 10월 2일
thanks very much
Mathieu NOE
Mathieu NOE 2021년 10월 4일
My pleasure !

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by