Resuelto


Create tangent function out of sine function only
Please don't use cosine and tangent functions

más de 3 años hace

Resuelto


Find Logic 17

más de 3 años hace

Resuelto


Find Logic 20

más de 3 años hace

Resuelto


Odd times even numbers in a matrix
First count the number of odd numbers in x, then the number of even. Return their product. example: x = [1 2] One odd ...

más de 3 años hace

Resuelto


All odd - all even
All odd numbers in x are added, while all even numers are subtracted from this. example: x = [1 2 3 4 5]; y = +(1+3+5)-...

más de 3 años hace

Resuelto


Count the numbers
In a array x, count the number of times the number n appears in x. for example: x = [1 2 3 4 3 2 1 2] and n = 2 the answer sh...

más de 3 años hace

Resuelto


Add the even numbers
Add only the even numbers of x example: x = [1 2 3 4 5] the positive numbers are: 2 4, so their sum is 6

más de 3 años hace

Resuelto


Add the positive numbers
Add only the positive numbers of x example: x = [-2 -1 0 1 2 3] the positive numbers are: 1 2 3, so their sum is 6

más de 3 años hace

Resuelto


Find Logic 11

más de 3 años hace

Resuelto


Find Logic 6

más de 3 años hace

Resuelto


Find Logic 12

más de 3 años hace

Resuelto


Find Logic 4

más de 3 años hace

Resuelto


Find Logic 5

más de 3 años hace

Resuelto


Find Logic 9

más de 3 años hace

Resuelto


Find Logic 10

más de 3 años hace

Resuelto


Find Logic 2

más de 3 años hace

Resuelto


Find Logic 3

más de 3 años hace

Resuelto


Find Logic 1

más de 3 años hace

Resuelto


Set x value to each odd index of vector y.
Set x value to each odd index of vector y.

más de 3 años hace

Resuelto


Select primes from the matrix.
Select primes from the matrix.

más de 3 años hace

Resuelto


Display positive elements of matrix.
Display positive elements of matrix.

más de 3 años hace

Resuelto


Weave two vectors into one
Weave the two given vectors into one as shown below. Example: If a = [1 1 1] b = [0 0 0] then y = [1 0 1 0 ...

más de 3 años hace

Resuelto


calculate linear convolution two vectors
for e.g in: a = [1 2 3] b = [4 5 6] out: y = [4 13 28 27 18]

más de 3 años hace

Resuelto


Calculate the derivative of a polynomial
Example: in = [ 1 1 1 ] out = [ 2 1 ]

más de 3 años hace

Resuelto


find the roots of a quadratic equation
for e.g x = [ 2 -1 -3] y = [1.5 -1]

más de 3 años hace

Resuelto


design a magic matrix without using the command magic.
Like magic(4) = 16 3 2 13;5 10 11 8;9 6 7 12;4 15 14 1

más de 3 años hace

Resuelto


Find the minimum element of the matrix
Example: If x = [3 9; 5 2] then y = 2

más de 3 años hace

Resuelto


Square the input
Given a scalar or vector x, return the square of each element. Example x = [7 2] answer = [49 4]

más de 3 años hace

Resuelto


kmph to mph converter
Convert the speed in miles/hour to km/hour.

más de 3 años hace

Resuelto


Sum positive elements of matrix.
Calculate sum of positive elements of the matrix.

más de 3 años hace

Cargar más