Ze Chen - MATLAB Central
photo

Ze Chen


Last seen: Today Active since 2020

Followers: 0   Following: 0

Statistics

CodyFrom 12/20 to 01/25Use left and right arrows to move selectionFrom 12/20Use left and right arrows to move left selectionTo 01/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

RANK
66,277
of 156,437

CONTRIBUTIONS
0 Problems
3 Solutions

SCORE
40

NUMBER OF BADGES
1

  • MATLAB Flipbook Mini Hack Participant
  • First Review
  • Solver
  • Explorer

View badges

Feeds

View by

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

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

4 years ago

Solved


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

4 years ago

Go to top of page