(copy of prob 33)
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more than you think.
With MATLAB, times tables should be easy! Write a function that outputs times tables up to the size requested.
Example:
Input n = 5
Output m is [ 1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
5 10 15 20 25 ]
Avoid using for/while loops.
Solution Stats
Solution Comments
Show comments
Loading...
Problem Recent Solvers84
Suggested Problems
-
2720 Solvers
-
How to find the position of an element in a vector without using the find function
2814 Solvers
-
Return unique values without sorting
1001 Solvers
-
Matlab Basics - Logical Tests I
270 Solvers
-
Volume of Equilateral Triangle Prism
86 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!