photo

Thomas Nguyen


Active since 2018

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
5 Answers

Cody

0 Problems
1 Solution

RANK
18,679
of 300,364

REPUTATION
2

CONTRIBUTIONS
0 Questions
5 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,934

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
119,651
of 168,407

CONTRIBUTIONS
0 Problems
1 Solution

SCORE
20

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Solver
  • First Answer

View badges

Feeds

View by

Solved


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 years ago

Answered
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 years ago | 0

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

7 years ago | 0

Answered
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 years ago | 1

Answered
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 years ago | 0

Answered
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 years ago | 0