photo

Thomas Nguyen


2018년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
5 답변

Cody

0 문제
1 답안

순위
18,679
of 300,381

평판
2

참여
0 질문
5 답변

답변 채택
0.00%

획득한 표
1

순위
 of 20,941

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
119,706
of 168,477

참여
0 문제
1 답안

점수
20

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Solver
  • First Answer

배지 보기

Feeds

보기 기준

문제를 풀었습니다


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

7년 초과 전

답변 있음
Who can give me a full answer of this question?
Code: function[] = someonesHW() idx=1; prompt='Enter a number: '; while true inp=input(prompt,'s'); if (inp=="d...

7년 초과 전 | 0

답변 있음
How can I solve this question?
Code: function[] = guessingGame() prompt_right=('Good job, you guessed correctly'); ...

7년 초과 전 | 0

답변 있음
how to separate odd and even elements of a matrix with out using for or while loops.
Code: function[] = sortEvenOdd(A) %This is the main function: [Aodd,Aeven] = sort(A); %calling the loc...

7년 초과 전 | 1

답변 있음
what does this mean ?
Code: function[N] = forfun(N,n) % N=[1 2 3 4 5;6 7 8 9 10;11 12 13 14 15] % n=2 a=size(N); for i=(a(1)-n+1):a(1) ...

7년 초과 전 | 0

답변 있음
how to find all integers between two integers
function[v] = int_col(n) %Const: %n=some_int_here; v=size(n); for i=1:n-1 v(i+1)=i; end end

7년 초과 전 | 0