photo

Taylor Markl


Last seen: 6 months 前 自 2025 起处于活动状态

Followers: 0   Following: 0

统计学

Cody

0 个问题
74 个答案

排名
N/A
of 302,006

声誉
N/A

贡献数
0 个提问
0 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 21,488

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
5,014
of 178,011

贡献数
0 个问题
74 个答案

评分
1,020

徽章数量
5

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Community Group Solver
  • Introduction to MATLAB Master
  • Solver

查看徽章

Feeds

排序方式:

已解决


Speed of car
Calculate the Speed of car given its Distance travelled and time taken in x and y respectively

1 year 前

已解决


Perimeters/Circumference
Given an array. Determine whether the perimeter is of a circle, triangle or square. Then calculate the perimeter.

1 year 前

已解决


Kinetic Energy
Given the mass m and velocity v of an object, determine its <http://en.wikipedia.org/wiki/Kinetic_energy kinetic energy>.

1 year 前

已解决


Find the Nth Root of a Given Number
Find the Nth root of a given number x. Examples x = 4096 n = 4 y = 8 x = 625 n = 5 y = 3.6239

1 year 前

已解决


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

1 year 前

已解决


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

1 year 前

已解决


Vector Multiplication
Vector Multiplication of three matrix as shown in test cases.

1 year 前

已解决


Sum of Two Numbers
Given two integer numbers x and y, calculate their sum and put it in z. Examples: Inputs x = 2, y = 4 Output z is 6 ...

1 year 前

已解决


Volume of a box
Given a box with a length a, width b, and height c. Solve the volume of the box.

1 year 前

已解决


Find the area of a triangle
Given a triangle with a base b and height h, return the triangle area.

1 year 前

已解决


Beginner's Problem - Squaring
Try out this test problem first. Given the variable x as your input, square it by two and put the result in y. Examples: ...

1 year 前

已解决


Find out magnitude of vector
Find out magnitude of vector. Say x=[1 2 3], then answer must sqrt(1^2+2^2+3^2) Please don't use sum function. If you l...

1 year 前

已解决


Find out sum of all elements of given Matrix
Find out sum of all elements of given Matrix A=[1 2 3;4 5 6 ;7 8 9]; Answer must be: 45 *If you like this problem, pl...

1 year 前

已解决


Find the hypotenuse
Given a and b (the two sides of a right-triangle), find c, the hypotenuse.

1 year 前

已解决


Transpose
Write a MATLAB script in order to convert a random length row vector (v) into a column vector.

1 year 前

已解决


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

1 year 前

已解决


easy problem
Find the last element of the array

1 year 前

已解决


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

1 year 前

已解决


to the 2 all elements
to the 2 all elements

1 year 前

已解决


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

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 前

已解决


Natural numbers in string form
Create a cell array of strings containing the first n natural numbers. Slightly harder than it seems like it should be. Exampl...

1 year 前

已解决


Fix the last element of a cell array
Note: this is lifted directly from <http://www.mathworks.com/matlabcentral/answers/82825-puzzler-for-a-monday Puzzler for a Mond...

1 year 前

已解决


String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
<http://www.mathworks.com/help/matlab/characters-and-strings.html String array> and cell array are two types of containers for s...

1 year 前

已解决


Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...

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 前

已解决


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 前

已解决


Convert a Cell Array into an Array
Given a square cell array: x = {'01', '56'; '234', '789'}; return a single character array: y = '0123456789'

1 year 前

已解决


Convert a numerical matrix into a cell array of strings
Given a numerical matrix, output a *cell array of string*. For example: if input = 1:3 output is {'1','2','3'} whic...

1 year 前

加载更多