photo

Thomas Nguyen


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
5 个回答

Cody

0 个问题
1 个答案

排名
18,679
of 300,105

声誉
2

贡献数
0 个提问
5 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,874

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
119,059
of 167,405

贡献数
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 years 前

已回答
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 前 | 0

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

7 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 0