Statistics
0 Questions
5 Answers
RANK
6,062
of 295,467
REPUTATION
8
CONTRIBUTIONS
0 Questions
5 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
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
How to change text in a textbox from a pushbutton's callback?
1) Try passing 'handles' into the function: action(IN,handles) 2) It is also good practice (I don't think your function r...
8 years ago | 0
I need help using an array in my code for hangman game
Try: letter = char(character(k)) This should fix the error you described. Also, I think the preceding line might be usin...
8 years ago | 0
Select subset of data going backwards
Try this: targetIndex = find(myMatrix(:,6) > 0); desiredData = myMatrix(targetIndex-5:targetIndex-1,4); If there is mor...
8 years ago | 0
| accepted
How can I read a text file and import a part of it into matlab.
Take a look at the the textscan() function. Something like this should work: numRows = 38; % Or however many you want fil...
8 years ago | 0
Execute a function till she reproduces twice in a row the same result
I would use a while loop. Something like this maybe: (If your function produces a 'new' value every time you call it.) value...
8 years ago | 0
| accepted