photo

Benjamin Re


自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

Cody

0 个问题
21 个答案

排名
N/A
of 301,612

声誉
N/A

贡献数
0 个提问
0 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 21,357

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
34,799
of 175,767

贡献数
0 个问题
21 个答案

评分
140

徽章数量
3

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Commenter
  • Promoter
  • Solver

查看徽章

Feeds

排序方式:

已解决


Add 10
Add 10 to x

9 years 前

已解决


multiply by 8
multiply the input by 8

9 years 前

已解决


multiply by 2
multiply the input by 2

9 years 前

已解决


multiply by 3
multiply the input by 3

9 years 前

已解决


multiply by 4
multiply the input by 4

9 years 前

已解决


multiply by 5
multiply the input by 5

9 years 前

已解决


multiply by 6
multiply the input by 6

9 years 前

已解决


multiply by 7
multiply the input by 7

9 years 前

已解决


multiply by 9
multiply the input by 9

9 years 前

已解决


multiply by 10
multiply the input by 10

9 years 前

已解决


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

9 years 前

已解决


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

9 years 前

已解决


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

9 years 前

已解决


Is my wife right?
Regardless of input, output the string 'yes'.

9 years 前

已解决


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

9 years 前

已解决


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

9 years 前

已解决


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

9 years 前

已解决


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

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

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

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

9 years 前