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 で MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!