Aqeel Iqbal - MATLAB Central
photo

Aqeel Iqbal


Last seen: 3 years ago Active since 2020

Followers: 0   Following: 0

Statistics

CodyFrom 11/20 to 01/25Use left and right arrows to move selectionFrom 11/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
51,248
of 156,574

CONTRIBUTIONS
0 Problems
5 Solutions

SCORE
61

NUMBER OF BADGES
1

  • MATLAB Mini Hack Participant
  • 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...

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

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

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

4 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

4 years ago

Go to top of page