photo

Lei Yu


Shanxi University

Last seen: 3 months ago Active since 2014

Followers: 0   Following: 0

Message

Programming Languages:
MATLAB
Spoken Languages:
Chinese
Pronouns:
He/him

Statistics

All
File Exchange

1 File

Cody

0 Problems
6 Solutions

RANK
N/A
of 300,611

REPUTATION
N/A

CONTRIBUTIONS
0 Questions
0 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
11,420 of 21,028

REPUTATION
43

AVERAGE RATING
5.00

CONTRIBUTIONS
1 File

DOWNLOADS
9

ALL TIME DOWNLOADS
337

RANK
52,419
of 169,811

CONTRIBUTIONS
0 Problems
6 Solutions

SCORE
70

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 5-Star Galaxy Level 1
  • Personal Best Downloads Level 2
  • First Submission
  • GitHub Submissions Level 1
  • Explorer
  • Solver

View badges

Feeds

View by

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

11 years ago

Solved


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

11 years ago

Solved


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

11 years ago

Solved


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

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

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

11 years ago