Solved


Laws of motion 6

18 days ago

Solved


Laws of motion 5
Calculate the force is u are given mass and acceleration.

18 days ago

Solved


Laws of motion 4
Given the initial velocity 'u', final velocity 'v' and acceleration 'a', find the distance travelled.

18 days ago

Solved


Laws of motion 3

18 days ago

Solved


Laws of motion 2

18 days ago

Solved


Laws of motion 1

18 days ago

Solved


Kinetic energy calculation

18 days ago

Solved


Total energy

18 days ago

Solved


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

18 days ago

Solved


Is A the inverse of B?
Given a matrix A and a matrix B, is A the inverse of B? >>A=[2,4;3,5]; >>B=[-2.5,2;1.5,-1]; >>isInverse...

19 days ago

Solved


Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...

19 days ago

Solved


Find the max element of the array
Find the max element of the array

19 days ago

Solved


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

19 days ago

Solved


Calculate the average value of the elements in the array
Calculate the average value of the elements in the array

19 days ago

Solved


to the 2 all elements
to the 2 all elements

19 days ago

Solved


the average value of the elements
Calculate the average value of the elements in the array

19 days ago

Solved


Double all elements in the array
Duplicate all elements in the array

19 days ago

Solved


calculate the length of matrix
input 1 array, calculate the length

19 days ago

Solved


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

23 days ago

Solved


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

23 days ago

Solved


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

23 days ago

Solved


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

23 days ago

Solved


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

23 days ago

Solved


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

23 days ago

Solved


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

23 days ago

Solved


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

23 days ago

Solved


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 days ago

Solved


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

25 days ago

Solved


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

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

25 days ago

Load more