photo

Vugar


Last seen: 2 years ago Active since 2017

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

1 Question
1 Answer

File Exchange

9 Files

Cody

0 Problems
11 Solutions

RANK
22,900
of 300,918

REPUTATION
2

CONTRIBUTIONS
1 Question
1 Answer

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
1

RANK
6,748 of 21,110

REPUTATION
161

AVERAGE RATING
0.00

CONTRIBUTIONS
9 Files

DOWNLOADS
12

ALL TIME DOWNLOADS
1594

RANK
36,426
of 171,685

CONTRIBUTIONS
0 Problems
11 Solutions

SCORE
127

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Personal Best Downloads Level 2
  • First Review
  • First Submission
  • First Answer
  • Solver

View badges

Feeds

View by

Solved


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

3 years ago

Solved


Find max
Find the maximum value of a given vector or matrix.

3 years ago

Solved


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

3 years ago

Solved


Inner product of two vectors
Find the inner product of two vectors.

3 years ago

Solved


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

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

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

3 years ago

Solved


Say something funny
Say something funny, or not. Your solution will be (fully automatically and objectively) scored based on how clever or funny ...

7 years ago

Solved


Remove the two elements next to NaN value
The aim is to *remove the two elements next to NaN values* inside a vector. For example: x = [6 10 5 8 9 NaN 23 9 7 3 21 ...

8 years ago

Solved


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

8 years ago

Solved


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

8 years ago