photo

Mazin Mustafa


Last seen: 17 days ago Active since 2016

Followers: 0   Following: 0

Message
Programming Languages:
Python, C, MATLAB, Fortran
Spoken Languages:
English

Statistics

All
MATLAB Answers

4 Questions
1 Answer

File Exchange

14 Files

Cody

0 Problems
8 Solutions

RANK
38,237
of 300,603

REPUTATION
1

CONTRIBUTIONS
4 Questions
1 Answer

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
1

RANK
2,594 of 21,028

REPUTATION
662

AVERAGE RATING
5.00

CONTRIBUTIONS
14 Files

DOWNLOADS
50

ALL TIME DOWNLOADS
5362

RANK
43,724
of 169,786

CONTRIBUTIONS
0 Problems
8 Solutions

SCORE
92

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • 5-Star Galaxy Level 4
  • Explorer
  • Solver
  • Personal Best Downloads Level 3
  • First Review
  • First Submission
  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

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

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

5 years ago

Solved


Return area of square
Side of square=input=a Area=output=b

5 years ago

Solved


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

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

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


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

5 years ago