Risolto


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

25 giorni fa

Risolto


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

25 giorni fa

Risolto


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

25 giorni fa

Risolto


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

25 giorni fa

Risolto


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

25 giorni fa

Risolto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

25 giorni fa

Risolto


Sum of series
a(n) = n^2 - (n-1)^2 find the summation of the series upto n i.e. a(1)+a(2)+...+a(n)

25 giorni fa

Risolto


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

25 giorni fa

Risolto


Potential energy calculation

26 giorni fa

Risolto


An Ohm's Law Calculator
*BACKGROUND / MOTIVATION:* Many important observations in math and science can be described by short, but powerful, equations...

26 giorni fa

Risolto


Laws of motion 6

26 giorni fa

Risolto


Laws of motion 3

26 giorni fa

Risolto


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

26 giorni fa

Risolto


Basic matrix operations using standard MATLAB commands
Create the matrix: 1.0e+15 * 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000...

26 giorni fa

Risolto


Initialize a Natural Number matrix.
Given length of matrix initialize a matrix consisting of natural numbers from 1 to n: n = 10; x = [ 1 2 3 4 5 6 7 8 9 10]; ...

26 giorni fa

Risolto


Column Vector
The third problem in Linear Algebra group. Create a column vector like this:

26 giorni fa

Risolto


Scalar
The First problem in Linear Algebra group. Make scalar contains the value:

26 giorni fa

Risolto


Matrix
The fourth problem in Linear Algebra group. Create a matrix like this: 14 7 26 7 8 6 3 0 30

26 giorni fa

Risolto


Row Vector
The second problem in Linear Algebra group. Create this vector in MATLAB: [7 8 26]

26 giorni fa

Risolto


Basic Algebra III
Get the Cube Root of the number n.

26 giorni fa

Risolto


Circle Perimeter
Get the perimeter of the Circle by PI.

26 giorni fa

Risolto


Multiply the Diagonals of Two Vectors
Find the diagonals of vectors a and b and multiply them.

26 giorni fa

Risolto


Find The Area Of Triangle Using Base & Height
You should find the area of the Triangle using base and height. Good Luck!

26 giorni fa

Risolto


Find the Best Hotels
Given three input variables: hotels - a list of hotel names ratings - their ratings in a city cutoff - the rating at which yo...

26 giorni fa

Risolto


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

26 giorni fa

Risolto


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

26 giorni fa

Risolto


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

26 giorni fa

Risolto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

26 giorni fa