Community Profile

photo

Tatiana Carey


Last seen: 12ヶ月 前 2018 年からアクティブ

Followers: 0   Following: 0

統計

  • Solver

バッジを表示

Feeds

表示方法

解決済み


Return area of square
Side of square=input=a Area=output=b

5年以上 前

解決済み


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

5年以上 前

解決済み


Matlab Basics II - Free Fall
An object freely falling from rest under gravity covers a distance x given by: x = 1/2 gt^2 write a function that calculat...

5年以上 前

解決済み


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

5年以上 前

解決済み


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

5年以上 前

解決済み


Convert radians to degrees
Given input in radians, output to degrees

5年以上 前

解決済み


Radians to Degrees
Convert radians to degrees.

5年以上 前

解決済み


Degrees to Radian
Convert degrees to radians

5年以上 前

解決済み


Matrix element wise multiplication
Take two incoming vectors, and multiply them element wise

5年以上 前

解決済み


Calculate the number of elements in a matrix.
Calculate the number of elements in a matrix.

5年以上 前

解決済み


Vector Element Multiplication
Take two incoming vectors, and output the element wise multiplication of the vectors.

5年以上 前

解決済み


Simple Vector Addition
Take two incoming vectors and output the sum of the two vectors

5年以上 前

解決済み


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

5年以上 前

解決済み


Determine the square root
Determine the square root of the value the user has entered, n.

5年以上 前

解決済み


Matlab Basics II - squares
Write a function that takes matrix A, and squares each element in the matrix example: A = [1 2 3] output = [1 4 9]

5年以上 前

解決済み


Mode
Find the mode of the vector Assumption: no vector is bimodal Example 1: input=[1 2 3 4 4]; output=4 Example 2: input=[7...

5年以上 前

解決済み


Concatenate two strings
Its very easy. Just concatenate two strings.

5年以上 前

解決済み


Max of a Vector
Write a function to return the max of a vector

5年以上 前

解決済み


Matlab Basics - Convert a row vector to a column vector
Write a script to convert a row (e.g. x = [1 2 3]) to a column (e.g. y = [1;2;3]), your script should be able to do this for any...

5年以上 前

解決済み


Sum of the Matrix Elements
Add up all the elements in a NxM matrix where N signifies the number of the rows and M signifies the number of the columns. E...

5年以上 前

解決済み


Back to basics 15 - classes
Covering some basic topics I haven't seen elsewhere on Cody. Return the class of the input variable.

5年以上 前

解決済み


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

5年以上 前

解決済み


Back to Basics - Find no. of elements in a matrix?
Let A be a m*n matrix. Find the total no. of elements in A ? (Hint - formula based) A = [1 2 3;4 5 6]; output = 6

5年以上 前

解決済み


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

5年以上 前

解決済み


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

5年以上 前

解決済み


The sum of the numbers in the vector
eg. [1,2,3]---->SUM=6

5年以上 前

解決済み


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

5年以上 前

解決済み


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

5年以上 前

解決済み


Calculate square and cube of number
Calculate square and cube of number x

5年以上 前

解決済み


Matlab Basics - y as a function of x
Write a function to calculate y as a function of x, such that y = 6x^2 + 5x - 2

5年以上 前

さらに読み込む