Solved


Matlab Basics II - Log and natural log
Write a function that calculates the difference between the log and natural log of a vector, to two decimal places example: ...

4 years ago

Solved


Min of a Matrix
Return the minimum value in the given matrix.

4 years ago

Solved


Add two numbers
Add two numbers (For beginners)

4 years ago

Solved


Calculate the base-10 logarithm of a number
Calculate the logarithm of number x

4 years ago

Solved


Dot Product

4 years ago

Solved


Element-wise vector product (★)
Given two vectors x and y, compute their element-wise product z. Thus, if x = [1 3 5] and y = [0.5 -1 2], then z = [1*0.5...

4 years ago

Solved


factorial
calculate x!

4 years ago

Solved


Factorial

4 years ago

Solved


factorial of a number x
Factorial of a number x

4 years ago

Solved


Factorial !
Calculate the factorial of a non-negative integer without using the built in function *factorial*

4 years ago

Solved


Volume and area of a sphere
Input(r) - radius Output([v,s]) - volume and area

4 years ago

Solved


Cube root of max value in a vector
Find the cube root of the maximum value in a vector

4 years ago

Solved


square root
Find square root of given number

4 years ago

Solved


Nth root
Nth root of a number x

4 years ago

Solved


Square root of a number
Write a code that will output the square root of x.

4 years ago

Solved


square root
Find the square root (y) of an input (x).

4 years ago

Solved


Square root of number
Square root of given number.

4 years 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 years ago

Solved


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

4 years ago

Solved


Find the Nth Root of a Given Number
Find the Nth root of a given number x. Examples x = 4096 n = 4 y = 8 x = 625 n = 5 y = 3.6239

4 years ago

Solved


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

4 years ago

Solved


Basic commands - rounding
make a function which will round to integer, which is nearer to zero. Example x=[-2.5 2]; y=[-2 2];

4 years ago

Solved


metre to feet converter
The idea is to make a converter, which exchange meters to feets. We use a factor of 1m = 3.281*1f. so 3m are equals to 9.843 m...

4 years ago

Solved


given 3 sides, find area of this triangle
1:3 -> 0; 3:5 -> 6

4 years ago

Solved


Area of a disk
Find the area of a disk or circle. x= radius of the disk.

4 years ago

Solved


Roots
Find out the roots of a given polynomial equation.Given are the coefficients of the equation.

4 years ago

Solved


Negative Infinity
Round the given array a towards negative infinity.

4 years ago

Solved


Positive Infinity
Round the array a towards positive infinity

4 years ago

Solved


Matlab Basics - Rounding I
Write a script to round x DOWN to the next lowest integer: e.g. x = 2.3 --> x = 2 also: x = 2.7 --> x = 2

4 years ago

Solved


Temperature conversion
Convert temperature in degrees Celsius (C) to temperature in degrees Kelvin (K). Assume your answer is rounded to the nearest Ke...

4 years ago

Load more