Risolto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

9 mesi fa

Risolto


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

9 mesi fa

Risolto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

9 mesi fa

Risolto


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]

9 mesi fa

Risolto


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

9 mesi fa

Risolto


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

9 mesi fa

Risolto


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

9 mesi fa

Risolto


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

9 mesi fa

Risolto


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

9 mesi fa

Risolto


Converts numbers into characters
Converts numbers into characters

9 mesi fa

Risolto


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

9 mesi fa

Risolto


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

9 mesi fa

Risolto


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

9 mesi fa

Risolto


to the 2 all elements
to the 2 all elements

9 mesi fa

Risolto


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

9 mesi fa

Risolto


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

9 mesi fa

Risolto


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

9 mesi fa

Risolto


Draw a '0' in a one matrix!

9 mesi fa

Risolto


Temperature Conversion 3
Given a temperature in Celcius, convert it to Fahrenheit.

9 mesi fa

Risolto


Temperature Conversion 2

9 mesi fa

Risolto


Temperature Conversion 1

9 mesi fa

Risolto


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

9 mesi fa