Solved


Create a code for XNOR
Given two inputs, output XNOR of those two

meer dan 7 jaar ago

Solved


Encode Me From The Past
Given this input x = 2, 5, 1, 2, 4, 1, 1, 3 output should be (Five 2's, Two 1's, One 4, Three 1's) [2 2 2 2 2 1 1 4 1 1 1]

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


Create tangent function out of sin and cos
Please don't use tan(x) directly

meer dan 7 jaar ago

Solved


Create sine function out of cosine
Please don't use sin(x) directly

meer dan 7 jaar ago

Solved


Create cosine function out of sine
Please dont use cos(x) directly

meer dan 7 jaar ago

Solved


Clipper Function
Create a function that emulates a clipper circuit Given sin wave, t and the constant value for clipping, and the direction to re...

meer dan 7 jaar ago

Solved


Modified Upper Matrix Mock
Given a vector v=[1 3 6 9 11], turn it into a matrix 'ramp' like so: m=[1 3 6 9 11; 0 3 6 9 11; 0 0 6 9 11; 0 0 0 9 11; 0 0 0...

meer dan 7 jaar ago

Solved


Derive Me Crazy
Given a polynomial, output its derivative. Example: input = [1 0 0] % x^2 output = [2 0] % 2x

meer dan 7 jaar 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...

meer dan 7 jaar 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 ...

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago