photo

Michelle


自 2014 起处于活动状态

Followers: 0   Following: 0

消息

统计学

Cody

0 个问题
17 个答案

排名
N/A
of 301,726

声誉
N/A

贡献数
0 个提问
0 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 21,402

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
23,695
of 176,285

贡献数
0 个问题
17 个答案

评分
230

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Speed Demon
  • Solver

查看徽章

Feeds

排序方式:

已解决


ASCii Code
Using Matlab get the ASCii for '?'

11 years 前

已解决


ASCii Code
Using matlab, give the symbol that is associated with ASCii code 122

11 years 前

已解决


Flipping
Write code that can reverse the vector without using any sort of loop. Example Given the input vector A = [ 1 2 3 4 5...

11 years 前

已解决


Building matrices
If you have matrix A, create matrix B using matrix A as an "element" A = [1 2 3 4; 5 6 7 8...

11 years 前

已解决


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

11 years 前

已解决


Deleting an element in a matrix
For vector Grades=[98 56 78 34 100 88 87], delete the number 78 to get the following matrix Grades=[98 56 34 100 88 87] **re...

11 years 前

已解决


Vectors counting by 2
Create a vector numbers from 7 to 15 in increments of 2

11 years 前

已解决


Counting down
Create a vector that counts from 450 to 200 in increments of 10.

11 years 前

已解决


Remainder
Make 'y' equal to the remainder of 27 divided by 5. When x=27 and t=5

11 years 前

已解决


Complex number
For complex number c=a+bi, write code that will add a and b together.

11 years 前

已解决


Evaluating a polynomial
Given the following polynomial and the value for x, determine y. y = 3x^5 – x^3 + 8x – 3 Example x = 1 y = 3 - 1 +...

11 years 前

已解决


length of a vector
Find twice the length of a given vector.

11 years 前

已解决


Rounding
Round 10.67 and make 'y' equal to that number.

11 years 前

已解决


Add two numbers
Given a and b, return the sum a+b in c.

11 years 前

已解决


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

11 years 前

已解决


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

11 years 前

已解决


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:...

11 years 前