photo

Connor


Last seen: 1 year 前 自 2025 起处于活动状态

Followers: 0   Following: 0

统计学

Cody

0 个问题
89 个答案

排名
N/A
of 302,006

声誉
N/A

贡献数
0 个提问
0 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 21,488

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
7,126
of 178,011

贡献数
0 个问题
89 个答案

评分
1,003

徽章数量
3

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver

查看徽章

Feeds

排序方式:

已解决


Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...

1 year 前

已解决


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

1 year 前

已解决


Calculate y=2
Find the value of x so that y=2

1 year 前

已解决


Remove element(s) from cell array
You can easily remove an element (or a column in any dimension) from a normal matrix, but assigning that value (or range) empty....

1 year 前

已解决


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

1 year 前

已解决


Product of elements in row
Product of matrix such that a=[3 3 1] b=9

1 year 前

已解决


Multiply a column by a row
* Given a column vector C and and a row vector R. * Output a matrix M. * Every column of M equals to C multiplied by correspon...

1 year 前

已解决


Count ones
Write a program to count number of ones (1s) in an integer variable input. For example: Input x=2200112231 output y=3 I...

1 year 前

已解决


Is A the inverse of B?
Given a matrix A and a matrix B, is A the inverse of B? >>A=[2,4;3,5]; >>B=[-2.5,2;1.5,-1]; >>isInverse...

1 year 前

已解决


Find the nearest integer
Given a vector of integers and a real number find the closest integer. EX: >> a = [2 4 5 6 8 10]; >> b = 4.6; >> nea...

1 year 前

已解决


Converts numbers into characters
Converts numbers into characters

1 year 前

已解决


Calculate the average value of the elements in the array
Calculate the average value of the elements in the array

1 year 前

已解决


Find the max element of the array
Find the max element of the array

1 year 前

已解决


Double all elements in the array
Duplicate all elements in the array

1 year 前

已解决


the average value of the elements
Calculate the average value of the elements in the array

1 year 前

已解决


to the 2 all elements
to the 2 all elements

1 year 前

已解决


calculate the length of matrix
input 1 array, calculate the length

1 year 前

已解决


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

1 year 前

已解决


linear least squares fitting
Inputs: * |f|: cell-array of function handles * |x|: column vector of |x| values * |y|: column vector of |y| values, same l...

1 year 前

已解决


Column norms of a matrix
Given a matrix M, return a vector y such that for each k y(k)=norm(M(:,k)) (y(k) is the Euclidean norm of the k-th col...

1 year 前

已解决


radius of a spherical planet
You just measured its surface area, that is the input.

1 year 前

已解决


Calculate the area of a triangle between three points
Calculate the area of a triangle between three points: P1(X1,Y1) P2(X2,Y2) P3(X3,Y3) these three points are the vertices of ...

1 year 前

已解决


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

1 year 前

已解决


Force and Motion 3
Two robots push on a large object in the same direction. One robot pushes with a force of F1 Newtons and the other with a force...

1 year 前

已解决


Laws of motion 6

1 year 前

已解决


Laws of motion 3

1 year 前

已解决


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

1 year 前

已解决


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

1 year 前

已解决


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

1 year 前

已解决


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

1 year 前

加载更多