what mistake I am making?

2 visualizaciones (últimos 30 días)
Manav Divekar
Manav Divekar el 30 de Nov. de 2021
Respondida: Mathieu NOE el 30 de Nov. de 2021
I am trying to rectify emg signal from the given text file.
%%
% Fatigue Data
impFatigueA = importdata('Fatigue_A.txt');
impFatigueK = importdata('Fatigue_K.txt');
impFatigueZ = importdata('Fatigue_Z.txt');
%% Rectifcication of the Signal
impFatigueA3 = abs(impFatigueA);
impFatigueK3 = abs(impFatigueK);
impFatigueZ3 = abs(impFatigueZ);
errror i am getting
>> untitled
Check for incorrect argument data type or missing argument in call to function 'abs'.
Error in untitled (line 36)
impFatigueA3 = abs(impFatigueA);

Respuestas (1)

Mathieu NOE
Mathieu NOE el 30 de Nov. de 2021
hello
I simply tested the first data set
when you do : impFatigueA = importdata('Fatigue_A.txt');
impFatigueA is a structure (containers)
to access the numerical data you have to dive a bit deeper
data1 = impFatigueA.data;
then you can take the abs of your data - I don't know yet which of the 16 columns you want to take the abs of it

Categorías

Más información sobre Spectral Measurements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by