Can someone help me?
이전 댓글 표시
I am not exactly sure if I am doing them all right.. I have been practice and trying to learn but.. I dont know if I got them right.. Can someone help and check thur to make sure that I did them right...
Thank you!
댓글 수: 5
James Tursa
2020년 3월 3일
What is the assignment? What specific problems are you having with your code?
KSSV
2020년 3월 3일
You have to load a file using:
load("data_set2.txt") %load data set
You have to mention your error/ stright away your problem.
KALYAN ACHARJYA
2020년 3월 3일
In addition, define EMG
num = length (EMG);
Vanessa Arp
2020년 3월 3일
Rik
2020년 3월 3일
What were you trying to do when writing that line of code?
답변 (1개)
Sai Sri Pathuri
2020년 3월 6일
If this is the error, it might be because you did not define EMG variable.
Undefined function or variable 'EMG'
Error in ArpAssignment3 (line 29)
num = length (EMG);
If you are referring the data in MuscleX, MuscleY, MuscleZ as EMG ( you commented in the code : EMG data for muscle X as column 2, muscle Y as column 3 and muscle Z as column 4), you may find num by taking length of one of these.
num = length(MuscleX);
카테고리
도움말 센터 및 File Exchange에서 Spectral Measurements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!