Solved


Don't Include a Five
Given a vector A, return vector B with all 5s replaced with 0s.

10 days ago

Solved


High Five!
Write a function that takes a number x and returns y = 'High Five' if x is not equal to five. Return y = 'Denied' if the number ...

10 days ago

Solved


A Five Introduction
Write a function that takes a number x as an input and returns the same value as y, unless x = 5, in which case the function sho...

10 days ago

Solved


Basic Physics X
Calculate the Kinetic Energy (KE) by Weight (w), Distanec (d), and Time (t) without Mass (m) or Speed (v).

10 days ago

Solved


Basic Physics IX
Calculate the Kinetic Energy (KE) by Weight (w) instead of Mass (m).

10 days ago

Solved


Basic Physics VIII
Calculate the Mechanical Energy (ME) when the point is B.

10 days ago

Solved


Basic Physics VII
Calculate the speed.

10 days ago

Solved


Basic Physics VI
Fing the Kinetic Energy (KE) by Distance (d) and Time (t) instead of Speed (v).

10 days ago

Solved


Basic Physics V
Calculate the Weight (w).

10 days ago

Solved


Basic Physics IV
Calculate the Work.

10 days ago

Solved


Basic Physics III
Calculate the Potential Energy (PE).

10 days ago

Solved


Basic Physics II
Get the Kinetic Energy (KE).

10 days ago

Solved


Basic Physics I
Calculate the energy by the famous formula of Albert Einstein.

10 days ago

Solved


Radar Target Distance Calculation
A radar system sends a short electromagnetic pulse toward a target and measures the elapsed time between transmission and recept...

10 days ago

Solved


Check that number is whole number
Check that number is whole number Say x=15, then answer is 1. x=15.2 , then answer is 0. http://en.wikipedia.org/wiki/Whole_numb...

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


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

10 days ago

Solved


Volume Pillar
Calculate the volume of a pillar with radius l and heigth ar.

10 days ago

Solved


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

10 days ago

Solved


Perimeter of a semicircle
Given the diameter d, find the perimeter of a semicircle

10 days ago

Solved


Given a square and a circle, please decide whether the square covers more area.
You know the side of a square and the diameter of a circle, please decide whether the square covers more area.

10 days ago

Solved


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

10 days ago

Solved


Pi Estimate 1
Estimate Pi as described in the following link: <http://www.people.virginia.edu/~teh1m/cody/Pi_estimation1.pdf>

10 days ago

Solved


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

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


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


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

10 days ago

Solved


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

10 days ago

Load more