photo

Bernhard Suhm

MathWorks

Last seen: 3 years ago Active since 2017

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

1 Question
86 Answers

File Exchange

1 File

Cody

0 Problems
10 Solutions

ThingSpeak

1 Public Channel

RANK
485
of 297,457

REPUTATION
161

CONTRIBUTIONS
1 Question
86 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
17

RANK
1,424 of 20,438

REPUTATION
1,314

AVERAGE RATING
4.70

CONTRIBUTIONS
1 File

DOWNLOADS
62

ALL TIME DOWNLOADS
12002

RANK
37,043
of 158,938

CONTRIBUTIONS
0 Problems
10 Solutions

SCORE
110

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
1 Public Channel

AVERAGE RATING
50

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Personal Best Downloads Level 4
  • First Review
  • 5-Star Galaxy Level 4
  • First Submission
  • Solver
  • Knowledgeable Level 4
  • 6 Month Streak
  • Revival Level 3
  • First Answer

View badges

Feeds

Solved


Find the peak 3n+1 sequence value
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...

5 years ago

Solved


Similar Triangles - find the height of the tree
Given the height, h1, of a power pole, shorter than a tree, a given distance, x2 away, please find h2, height of the tree. Pleas...

5 years ago

Solved


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

5 years ago

Solved


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

5 years ago

Solved


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

5 years ago

Solved


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

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

5 years ago

Solved


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

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

5 years ago

Solved


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

5 years ago