Madison Goodwin
Followers: 0 Following: 0
Statistics
6 Questions
0 Answers
RANK
113,383
of 295,673
REPUTATION
0
CONTRIBUTIONS
6 Questions
0 Answers
ANSWER ACCEPTANCE
16.67%
VOTES RECEIVED
0
RANK
of 20,262
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,257
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How to I change the time step in the following loop, so the new time is for the next line of code beign read?
So I have this data that is a three column vector, which has 30 rows. The data is in the columns: volts, counts, time. The time ...
6 years ago | 1 answer | 0
1
answerQuestion
Why isn't my loop working?
fid = uigetfile('*.*'); fid = fopen(fid); deltat = 0.5; n = 1; while fgetl(fid)~= -1 line = fgetl(fid); line = sscanf(li...
6 years ago | 1 answer | 0
1
answerQuestion
How to create a loop for going through lines??
fileID = uigetfile(); data = fopen(fileID); line = fgetl(data); line = sscanf(line, '%f V, %i counts, %i ms'); vout = line...
6 years ago | 1 answer | 0
1
answerQuestion
Loop for classifying variables is not working??????
if x(1) > 31.5 && x(1) < 36.5 if x(2) >= 60 if x(3) >= 2 disp('Successful Kick has been...
6 years ago | 1 answer | 0
1
answerQuestion
If I want to have x as a 3 element vector say [2,3,2], how to I write a loop to iterate over each value in the array for x?
n = n + 1; t(n+1) = t(n) + deltat; %x(t+deltat) = x(t) + v(t).*deltat x(n+1) = x(n) + v(n).*deltat; %a(t) = agravity + f...
6 years ago | 1 answer | 0
1
answerQuestion
My code keeps coming up with "Index Exceeds Array Bounds" help?
n = 0; t = 0; deltat = 0.1; m = 0.44; Cd = 0.05; p = 1.29; Ra = 0.135; %Find b using the rearranged formula...
6 years ago | 1 answer | 0