解決済み


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

約2年 前

解決済み


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

約2年 前

解決済み


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displayed ...

約2年 前

解決済み


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

約2年 前

解決済み


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

約2年 前

解決済み


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

約2年 前

解決済み


free points
function y = your_fcn_name(x) y = x(1)+x(2); end

約2年 前

解決済み


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

約2年 前

解決済み


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

約2年 前

解決済み


Converts numbers into characters
Converts numbers into characters

約2年 前

解決済み


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

約2年 前

解決済み


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

約2年 前

解決済み


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

約2年 前

解決済み


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

約2年 前

解決済み


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

約2年 前