解決済み


Falling on the Moon.

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


easy problem
Find the last element of the array

約1ヶ月 前

解決済み


Double the length of the vector

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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]

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


Square
square root of x

約1ヶ月 前

解決済み


print 'Hello W0rld'

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


area

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


Previous Palindrome

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


Análisis código QR

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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

約1ヶ月 前

解決済み


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]

約1ヶ月 前

さらに読み込む