Feeds
已解决
Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....
8 years 前
已解决
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
8 years 前
已回答
How can I display function hints for methods in a class?
Have the same issue, function hints for a user-defined class method are not useful. A slightly different issue, could be the ...
How can I display function hints for methods in a class?
Have the same issue, function hints for a user-defined class method are not useful. A slightly different issue, could be the ...
8 years 前 | 4
已解决
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]; and ...
12 years 前
已解决
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:...
12 years 前
已解决
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...
12 years 前
已解决
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
12 years 前
已解决
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
12 years 前
已解决
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...
12 years 前
已解决
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...
12 years 前
已解决
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 ...
12 years 前
已解决
How many trades represent all the profit?
Given a list of results from trades made: [1 3 -4 2 -1 2 3] We can add them up to see this series of trades made a profit ...
12 years 前
已回答
How do I use IMFILTER to high pass filter an image?
A typical high-pass (or high emphasize filter) would be an unsharp mask. H = fspecial('unsharp');
How do I use IMFILTER to high pass filter an image?
A typical high-pass (or high emphasize filter) would be an unsharp mask. H = fspecial('unsharp');
13 years 前 | 0