A résolu


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

1 jour il y a

A résolu


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

1 jour il y a

A résolu


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not to use d...

1 jour il y a

A résolu


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

1 jour il y a

A résolu


Find max
Find the maximum value of a given vector or matrix.

1 jour il y a

A résolu


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

1 jour il y a

A résolu


Inner product of two vectors
Find the inner product of two vectors.

1 jour il y a

A résolu


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

1 jour il y a

A résolu


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

1 jour il y a

A résolu


How long do each of the stages of the rocket take to burn?
A space rocket has 3 stages: - stage 1, s1; - stage 2, s2; - stage 3, s3. If s1 burns 3 x as long as s2 which burns ...

1 jour il y a

A résolu


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

1 jour il y a

A résolu


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

1 jour il y a

A résolu


Potential energy calculation

2 jours il y a

A résolu


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

2 jours il y a

A résolu


Force and Motion 3
Two robots push on a large object in the same direction. One robot pushes with a force of F1 Newtons and the other with a force...

2 jours il y a

A résolu


Laws of motion 6

2 jours il y a

A résolu


Laws of motion 3

2 jours il y a

A résolu


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

2 jours il y a

A résolu


Force and Motion 2
Two robots are pulling on an object in opposite directions. One robot pulls with a force of F1 Newtons and the other with a forc...

2 jours il y a

A résolu


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

2 jours il y a