photo

rocketboyjka


2016년부터 활동

Followers: 0   Following: 0

메시지

통계

MATLAB Answers

0 질문
5 답변

순위
5,652
of 297,503

평판
8

참여
0 질문
5 답변

답변 채택
0.00%

획득한 표
0

순위
 of 20,449

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 159,017

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 1
  • First Answer

배지 보기

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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 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년 초과 전 | 0

| 수락됨