photo

Jeremy Wurbs


Boston University

Last seen: 4 years 前 自 2013 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
  • Personal Best Downloads Level 1
  • First Review
  • 5-Star Galaxy Level 3
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • CUP Challenge Master
  • ASEE Challenge Master
  • Promoter
  • Solver

查看徽章

Feeds

排序方式:

已解决


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

4 years 前

已解决


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

11 years 前

已解决


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

11 years 前

已回答
while loop iteration in matlab?
If you know how long you're going to iterate for, something like: numIter = 10; A_vec = zeros(numIter,1); A = 10; cnt...

11 years 前 | 1

已提交


Train Cascade Object Detector
Example showing how to train a user-defined object detector.

11 years 前 | 2 次下载 |

Thumbnail

已解决


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

11 years 前

已解决


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

11 years 前

已解决


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<http://upload....

11 years 前

已解决


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

11 years 前

已解决


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<http://upload.wikimedia.org/wikipedia/commons/e/e0/Equilateral-tr...

11 years 前

已解决


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the s...

11 years 前

已解决


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

11 years 前

已解决


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

11 years 前

已解决


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

11 years 前

已解决


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

11 years 前

已解决


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

11 years 前

已解决


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<http://upload.wikimedia.org/wikipe...

11 years 前

已回答
Matlab stop time or running time
You can use the |tic| and |toc| commands: tic pause(1.5) % put your code here time = toc

11 years 前 | 0

已回答
remove wanted portions in binary image
If you wish to remove small regions from the binary image itself, you could start by looking at morphological operations ( |help...

11 years 前 | 1

已解决


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

11 years 前

已解决


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

11 years 前

已解决


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

11 years 前

已解决


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

11 years 前

已解决


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

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

11 years 前

已解决


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

11 years 前

已回答
User defined surface grid
Ahh, I see. That is trickier. I get slightly better results by changing mesh(XX,ZZ,YY,ZZ); to surf(XX,ZZ,YY,ZZ,...

11 years 前 | 0

| 已接受

已回答
How mask can a image is segmented using a mask
If I understand you correctly you wish to apply a mask to an image. You can accomplish this with the .* operator. Just make sure...

11 years 前 | 0

已回答
Save a matrix to a file with an array of matrices without loading all of the data
I believe the functionality you are looking for can be done with a matfile object (refer to ' |help matfile| '), but unfortunate...

11 years 前 | 0

已回答
User defined surface grid
Great question. If I'm understanding correctly, you don't like the lines connecting your points to be so prevalent. You can fix ...

11 years 前 | 0

加载更多