解決済み


Draw 'F'
Draw a x-by-x matrix 'F' using 1 and 0. (x is odd and bigger than 4) Example: x=5 ans= [1 1 1 1 1 1 0 0 0 0 ...

4年以上 前

解決済み


Draw 'H'
Draw a x-by-x matrix 'H' using 1 and 0. (x is odd and bigger than 2) Example: x=5 ans= [1 0 0 0 1 1 0 0 0 1 ...

4年以上 前

解決済み


Draw a 'N'!
Given n as input, generate a n-by-n matrix 'N' using 0 and 1 . Example: n=5 ans= [1 0 0 0 1 1 1 0 0 1 1 0 ...

4年以上 前

解決済み


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

4年以上 前

解決済み


Celsius to Kelvin
Convert Celsius degrees to Kelvin temperature.

4年以上 前

解決済み


Back to basics 6 - Column Vector
Covering some basic topics I haven't seen elsewhere on Cody. Given an input vector, output true or false whether it is a colu...

4年以上 前

解決済み


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

4年以上 前

解決済み


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.

4年以上 前

解決済み


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

4年以上 前

解決済み


Unit Matrix
Given n, you should return an n-by-n unit matrix. Example: If input is n=2 then A = [ 1 0 0 1 ] If input ...

4年以上 前

解決済み


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

4年以上 前

解決済み


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

4年以上 前

解決済み


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

4年以上 前

解決済み


Y=X
Given an input variable x, output a variable y that is equal in value to x. Example: Input x = 1 Output y is 1 Inp...

4年以上 前

解決済み


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

4年以上 前

解決済み


Change matrix to vector2
From x = 4 3 5 1 5 1 To y = 4 3 5 1 ...

4年以上 前

解決済み


Change matrix to vector
Vector is a matrix whose size is 1 x n or n x 1. Change matrix to vector. x = 4 3 5 1 ...

4年以上 前

解決済み


Find remainder when x is divided by 3
Find remainder when x is divided by 3

4年以上 前

解決済み


first element of matrix
find the first elements of a column matrix

4年以上 前

解決済み


Area of a Square
Given the length x of the side of a regular square, find the area of the square, A.

4年以上 前

解決済み


Annual Salary
What is the annual salary of Mr. Cody if he works 40 hours a week and gets $x per hour and a yearly bonus of $2000? (Let, 50 wee...

4年以上 前

解決済み


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

4年以上 前

解決済み


Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250

4年以上 前

回答済み
Why Do I keep getting NaNs in my code???
NaN stands for Not a Number. If your variable/matrix/input does not have the specific number/range that should meet the argument...

4年以上 前 | 0

回答済み
MATLAB Cody locked solutions to a solved problem
Yes, you cannot view the solutions which are shorter than your solution in size. You can only view the solutions which are of s...

4年以上 前 | 0

Discussion


My problems are vanished
I created some problems last night and created a group too. All those are now missing. Also my ranking progress, activites, bad...

4年以上 前 | 0

質問


My problems are vanished
I created some problems last night and created a group too. All those are now missing. Also my ranking progress, activites, bad...

4年以上 前 | 1 件の回答 | 0

1

回答

解決済み


Array of Ones
Create a 100 X 100 array of ones.

4年以上 前

解決済み


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

4年以上 前

さらに読み込む