Solved


Shift elements of vector left
Shift elements of vector to the left. For ex. : Input_vec = [1 2 3 4 5] Output_vec = [2 3 4 5 1]

3 days ago

Solved


Average of even-numbered columns
Given a vector, find the average of even-numbered columns. e.g x = [ 4 6 8 9 1 2 7 ] y = ( 6 + 9 + 2 ) / 3

3 days ago

Solved


Step up
For given input array, output a array with all elements step up by two

3 days ago

Solved


What percentage?
Calculate the output c as the percentage of a on b for given a and b.

3 days ago

Solved


Array Concatenation (1)
Given two matrices, a and b, concatenate the two matrices horizontally, i.e., the number of columns of the result should be equa...

3 days ago

Solved


print 'Hello W0rld'

3 days ago

Solved


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

3 days ago

Solved


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

3 days ago

Solved


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

3 days ago

Solved


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

3 days ago

Solved


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

3 days ago

Solved


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

3 days ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

3 days ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

3 days ago

Solved


number play

4 days ago

Solved


Function substitution (2)
Evaluate the function for the given values of the variables N and t

4 days ago

Solved


Back to Basics - New Data Type in R2016b - convert a char to a string
Convert an char array into a string.

4 days ago

Solved


size

4 days ago

Solved


MATLAB Basics: Complex Argument
For a given complex number, x, return the argument, y, in degrees.

4 days ago

Solved


Solve expression II
Solve given expression. alpha=0.1(-x-y-50)/(exp((-x-y-50)/10)-1) beta=5exp((-x+y-60)/20) result=alpha+beta;

4 days ago

Solved


Simple Interest : Calculate time in years
Theorem : Simple Interest where; F : Future Value P : Present Value r : Annual simple interest rate (decimal) t : Time in...

4 days ago

Solved


Create tangent function out of sine function only
Please don't use cosine and tangent functions

4 days ago

Solved


imaginary

4 days ago

Solved


Find NaNs in the matrix
Return 1s wherever there is a NaN in the input matrix

4 days ago

Solved


Create a constant offset.
Add a constant offset to an array. Example a = [1 3 5 9] offset = 2 y = [3 5 7 11]

4 days ago

Solved


Volume of Cylindrical Shell

4 days ago

Solved


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

4 days ago

Load more