Resuelto


Reverse Run-Length Encoder
Given a "counting sequence" vector x, construct the original sequence y. A counting sequence is formed by "counting" the entrie...

casi 4 años hace

Resuelto


Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...

casi 4 años hace

Resuelto


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

casi 4 años hace

Resuelto


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

casi 4 años hace

Resuelto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

casi 4 años hace

Resuelto


Function Iterator
Given a handle fh to a function which takes a scalar input and returns a scalar output and an integer n >= 1, return a handle f...

casi 4 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

casi 4 años hace

Resuelto


4xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


15xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


13xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


12xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


11xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


10xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


9xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


8xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


7xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


6xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


5xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


4xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


3xa
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y.

casi 4 años hace

Resuelto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

casi 4 años hace

Resuelto


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.

casi 4 años hace

Resuelto


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

casi 4 años hace

Resuelto


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

casi 4 años hace

Resuelto


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

casi 4 años hace

Resuelto


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

casi 4 años hace

Resuelto


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

casi 4 años hace

Resuelto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

casi 4 años hace

Resuelto


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

casi 4 años hace

Resuelto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

casi 4 años hace

Cargar más