Statistics
RANK
296,473
of 300,756
REPUTATION
0
CONTRIBUTIONS
3 Questions
1 Answer
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 21,077
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 170,890
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
I'm trying to get the EMG reading in graph form from this file, I was able to get a graph but it looks zoomed out?
EDIT: fixed your code so that it runs here S= load('Exercse 1.mat'); plot(S.data, 'b', 'DisplayName', 'File 2');
9 months ago | 1 answer | 0
1
answerI'm trying to plot a mat file with a 1x1 structure, but it's giving the error that "Index in position 2 exceeds array bounds. Index must not exceed 1."
does it work ?
11 months ago | 0
Question
I'm trying to plot a mat file with a 1x1 structure, but it's giving the error that "Index in position 2 exceeds array bounds. Index must not exceed 1."
data1 = load('radial.mat'); % Assume data is [X1 Y1] for file1 plot(data1(:,1), data1(:,2), 'g', 'DisplayName', 'File 2'); ...
11 months ago | 0 answers | 0
0
answersQuestion
I'm trying to plot a mat file with a 1x1 structure, but it's giving the error that "Index in position 2 exceeds array bounds. Index must not exceed 1."
data1 = load('radial.mat'); % Assume data is [X1 Y1] for file1 plot(data1(:,1), data1(:,2), 'g', 'DisplayName', 'File 2');
11 months ago | 1 answer | 0