photo

Tony


SMEE

Active since 2011

Followers: 0   Following: 0

Message

Statistics

All
MATLAB Answers

0 Questions
2 Answers

Cody

0 Problems
13 Solutions

RANK
4 357
of 300 365

REPUTATION
12

CONTRIBUTIONS
0 Questions
2 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
4

RANK
 of 20 933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
32 579
of 168 262

CONTRIBUTIONS
0 Problems
13 Solutions

SCORE
140

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Review
  • Revival Level 1
  • First Answer
  • Solver

View badges

Feeds

View by

Solved


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

mer än 9 år ago

Solved


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

mer än 9 år ago

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

mer än 9 år ago | 4

Solved


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

ungefär 13 år ago

Solved


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

ungefär 13 år ago

Solved


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

mer än 13 år ago

Solved


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

mer än 13 år ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

mer än 13 år ago

Solved


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

mer än 13 år 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...

mer än 13 år ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

mer än 13 år ago

Solved


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

mer än 13 år ago

Solved


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

mer än 13 år ago

Solved


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

mer än 13 år ago

Answered
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');

ungefär 14 år ago | 0