![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/818584/image.png)
what mistake I am making?
1 回表示 (過去 30 日間)
古いコメントを表示
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);
0 件のコメント
回答 (1 件)
Mathieu NOE
2021 年 11 月 30 日
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
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/818584/image.png)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!