photo

rocketboyjka


Attivo dal 2016

Followers: 0   Following: 0

Messaggio

Statistica

  • Knowledgeable Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
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...

circa 8 anni fa | 0

Risposto
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...

circa 8 anni fa | 0

Risposto
Select subset of data going backwards
Try this: targetIndex = find(myMatrix(:,6) > 0); desiredData = myMatrix(targetIndex-5:targetIndex-1,4); If there is mor...

circa 8 anni fa | 0

| accettato

Risposto
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...

circa 8 anni fa | 0

Risposto
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...

circa 8 anni fa | 0

| accettato