Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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]

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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.

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

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

etwa ein Jahr vor | 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...

etwa ein Jahr vor | 6

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


modulus of a number
find the modulus of a given number

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Mehr laden