Solved


Rotate a Matrix
Input a Matrix x, Output y is the matrix rotating x 90 degrees clockwise

6 months ago

Solved


Create a Matrix of Zeros
Given an input x, create a square matrix y of zeros with x rows and x columns.

6 months ago

Solved


Matlab Basics - Absolute Value
Write a script that returns the absolute value of the elements in x e.g. x = [-1 -2 -3 -4] --> y = [1 2 3 4]

6 months ago

Solved


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

6 months ago

Solved


Back to basics 11 - Max Integer
Covering some basic topics I haven't seen elsewhere on Cody. Return the largest positive integer MATLAB can handle.

6 months ago

Solved


Min of a Matrix
Return the minimum value in the given matrix.

6 months ago

Solved


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

6 months ago

Solved


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

6 months ago

Solved


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

6 months ago

Solved


Who is the smartest MATLAB programmer?
Who is the smartest MATLAB programmer? Examples: Input x = 'Is it Obama?' Output = 'Me!' Input x = 'Who ?' Ou...

6 months ago

Solved


Arrange vector in ascending order
Arrange a given vector in ascending order. input = [4 5 1 2 9]; output = [1 2 4 5 9];

6 months ago

Solved


Alternating sum
Given vector x, calculate the alternating sum y = x(1) - x(2) + x(3) - x(4) + ...

6 months ago

Solved


Create an index-powered vector
Given a input vector x, return y as index-powered vector as shown below. Example x = [2 3 6 9] then y should be [...

6 months ago

Solved


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

6 months ago

Solved


Area of a Square
Inside a square is a circle with radius r. What is the area of the square?

6 months ago

Solved


Square a Number
Given an input x, return y, which is equal to the square of x.

6 months ago

Solved


Simple equation: Annual salary
Given an hourly wage, compute an annual salary

6 months ago

Discussion


Image format for problem group cover in Cody ?
Hey cody fellows :-) ! I recently created two problem groups, but as you can see I struggle to set their cover images : Prim...

6 months ago | 2

Discussion


Gif animations with Matlab
I just wanted here to share a link to some .gif animations I created over the years with Matlab :-) Wikimedia : uploads by Ni...

6 months ago | 6

Solved


Determine if a Given Number is a Triangle Number
*Description:* Determine if the elements of an input array are triangle numbers and return the result as an array with the sa...

6 months ago

Solved


Return 'on' or 'off'
When the input is true, return 'on', otherwise, return 'off'.

6 months ago

Solved


square root
Find the square root (y) of an input (x).

6 months ago

Solved


Replace Nonzero Numbers with 1
Given the matrix x, return the matrix y with non zero elements replaced with 1. Example: Input x = [ 1 2 0 0 0 ...

6 months ago

Solved


Check if inputted variable is a string or a number
Check if a inputted variable is a number or a string, given a string input (i.e. '1' is 1 and thus a number, 'a' is a string).

6 months ago

Solved


imaginary results
Return the value of the imaginary number i to the power of input argument n.

6 months ago

Solved


modulus of a number
find the modulus of a given number

6 months ago

Solved


Create tangent function out of sin and cos
Please don't use tan(x) directly

6 months ago

Solved


Output a vector which is table of 9
Output a vector which is table of 9

6 months ago

Solved


Set some matrix elements to zero
First get the maximum of each *row*, and afterwards set all the other elements to zero. For example, this matrix: 1 2 3 ...

6 months ago

Load more