photo

Elijah Smith


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
6 个回答

Cody

0 个问题
1 个答案

排名
7,582
of 300,365

声誉
6

贡献数
0 个提问
6 个回答

回答接受率
0.00%

收到投票数
3

排名
 of 20,933

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
120,326
of 168,262

贡献数
0 个问题
1 个答案

评分
20

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已解决


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

6 years 前

已回答
how to find out wether the array is Hill or not?
This is just the first thing that I thought of: function res = Is_hill(array) %define variables res = -1; stopVa...

7 years 前 | 0

已回答
How to use the loops in this situation?
So, there are a few things that I noticed right off the bat. I have not seen the syntax "while if ..." and I don't believe tha...

7 years 前 | 1

已回答
How to solve equations
I'm not sure if I understand what your asking. If you are saying that you have the values for pi, pj, and pk already then you ca...

7 years 前 | 1

已回答
how to save the result of each iteration of 'for' loop in a text file without replacing the previous results in the text file????
you must open the file with "append" permissions not "write" permissions like so: fid = fopen(my1.txt, 'a'); %this will not era...

7 years 前 | 0

已回答
Why does this produce an error?
Here are the problems: 1) you can't use a value for a input (as the other people have said) 2) even if your inputs were vari...

7 years 前 | 0

已回答
how can i make the centre elements of a matrix to become zeros
this is what I came up with: function A = cancel_middle(A, k) [n, m] = size(A); array2add = zeros(k); if n > k &...

7 years 前 | 1