Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...
plus de 3 ans il y a
A résolu
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1.
Hint: use increment.
plus de 3 ans il y a
A résolu
Create a vector
Create a vector from 0 to n by intervals of 2.
plus de 3 ans il y a
A résolu
Find max
Find the maximum value of a given vector or matrix.
plus de 3 ans il y a
A résolu
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...
plus de 3 ans il y a
A résolu
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...