Gelöst


Falling on the Moon.

3 Monate vor

Gelöst


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 Monate vor

Gelöst


easy problem
Find the last element of the array

3 Monate vor

Gelöst


Double the length of the vector

3 Monate vor

Gelöst


Matlab Basics II - Operations and Matrix Dimensions
Write a function that takes two inputs, a & b, and outputs the sum and product of the two matrices. The matrices have OPPOSITE d...

3 Monate vor

Gelöst


Interior angles
Find the sum of interior angles for polygon of x sides.

3 Monate 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]

3 Monate vor

Gelöst


Find the "ordinary" or Euclidean distance between A and Z
A, B and Z define three points in the 3D _Euclidean_ space of the form: A = [x1;y1;0]; B = [x2;y2;0]; Z = [x2;y2;z]; Find th...

3 Monate vor

Gelöst


Largest Prime Number
Given a matrix X, find the largest prime number in X.

3 Monate vor

Gelöst


Evaluate Polynomial
Given a polynomial equation coefficients in a vector p, you have to return its value at x. Example: For inputs p and x ...

3 Monate vor

Gelöst


Square
square root of x

3 Monate vor

Gelöst


print 'Hello W0rld'

3 Monate vor

Gelöst


Kelvin to Fahrenheit
You can find a doc about it in here => https://www.rapidtables.com/convert/temperature/how-kelvin-to-fahrenheit.html x is kelvi...

3 Monate vor

Gelöst


Cannon Ball
Given g (acceleration due to gravity) and desired altitude x, find the minimum ground velocity of a cannon ball to reach x.

3 Monate vor

Gelöst


raise 1/3
Raise a number to 1/3 power.

3 Monate vor

Gelöst


area

3 Monate vor

Gelöst


MATLAB Basics: Complex Numbers
For a given complex number, x, return the real and imaginary parts as a vector, y = [Real Imaginary].

3 Monate vor

Gelöst


Moyenne pondérée
Ecrire une fonction qui prend en entrée un vecteur P et un vecteur V et calcule la moyenne pondérée MP des élements vi d'un vec...

3 Monate vor

Gelöst


Remove white space from the string
Remove the white spaces (trailing and leading) from the input variable

3 Monate vor

Gelöst


edge detection
write a function that gives the indexes of rising or falling edge x is a vector (assume it contains always at least one eleme...

3 Monate vor

Gelöst


Previous Palindrome

3 Monate vor

Gelöst


Build the Well
Calculate the total time taken for building 'n' wells given : Worker A takes a hr to build the well alone Worker B takes b hr...

3 Monate vor

Gelöst


Find sum of alternate numbers in a vector
Find sum of alternate numbers in a vector starting from index 1

3 Monate vor

Gelöst


Add Even and Subtract Odd Numbers in an Array
For an input array, add all the even values and subtract the odd values. This final value is the output. E.g. input = [1 2 3 4...

3 Monate vor

Gelöst


Análisis código QR

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


Total resistance of a network of resistors in series and parallel
What is the total resistance of a network of resistors in series and in parallel? A matrix R contains the resistances (in Ohm) ...

3 Monate vor

Gelöst


Matrix Generation from Vector Multiplication
Output the matrix generated from multiplying two vectors together

3 Monate vor

Gelöst


Combination of Vectors
Return a combination of vectors x1, x2 based on y1, y2 per: x(j) = 0 if y1(j) < y2(j) x(j) = x1(j) if y1(j)...

3 Monate vor

Gelöst


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 Monate vor

Mehr laden