Solved


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

10 days ago

Solved


Potential energy calculation

10 days ago

Solved


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

10 days ago

Solved


Convert radians to degrees
Given input in radians, output to degrees

10 days ago

Solved


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

10 days ago

Solved


radius of a spherical planet
You just measured its surface area, that is the input.

10 days ago

Solved


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

10 days ago

Solved


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

10 days ago

Solved


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

10 days ago

Solved


MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8

10 days ago

Solved


MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9

10 days ago

Solved


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

10 days ago

Solved


Create a vector
Create a vector from 0 to n by intervals of 2.

10 days ago

Solved


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

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

10 days ago

Solved


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

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

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

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

10 days ago

Solved


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

10 days ago

Solved


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

10 days ago

Solved


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

10 days ago

Solved


Area Conversion 1

10 days ago

Solved


Mass Conversion 2

10 days ago

Solved


Mass Conversion 1

10 days ago

Solved


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

10 days ago

Solved


Temperature Conversion 2

10 days ago

Solved


Temperature Conversion 1

10 days ago

Solved


Find Logic 11

10 days ago

Solved


Find Logic 12

10 days ago

Load more