Solved


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,2,3]; Returns 1.

3 months ago

Solved


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

3 months ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

3 months ago

Solved


Return area of square
Side of square=input=a Area=output=b

3 months ago

Solved


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.

3 months ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

3 months ago

Solved


Laws of motion 1

3 months ago

Solved


Laws of motion 5
Calculate the force is u are given mass and acceleration.

3 months ago

Solved


Kinetic energy calculation

3 months ago

Solved


Total energy

3 months ago

Solved


Potential energy calculation

3 months ago

Solved


Momentum Calculation
A shopping cart of mass 'm1' is traveling with velocity 'u' and collides with a second shopping cart of mass 'm2.' The two shopp...

3 months ago

Solved


factorial of a number x
Factorial of a number x

3 months ago

Solved


Speed of car
Calculate the Speed of car given its Distance travelled and time taken in x and y respectively

3 months ago

Solved


PIN code

3 months ago

Solved


Temperature Conversion 3
Given a temperature in Celcius, convert it to Fahrenheit.

4 months ago

Solved


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

4 months ago

Solved


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

4 months ago

Solved


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

4 months ago

Solved


Celsius to Kelvin
Convert Celsius degrees to Kelvin temperature.

4 months ago

Solved


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

4 months ago

Solved


to the 2 all elements
to the 2 all elements

4 months ago

Solved


Double all elements in the array
Duplicate all elements in the array

4 months ago

Solved


Converts numbers into characters
Converts numbers into characters

4 months ago

Solved


the average value of the elements
Calculate the average value of the elements in the array

4 months ago

Solved


Find the max element of the array
Find the max element of the array

4 months ago

Solved


calculate the length of matrix
input 1 array, calculate the length

4 months ago

Solved


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

4 months ago

Solved


Multiplication
Given 2 numbers a and b mulitply them

4 months ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

4 months ago

Load more