How to Create a Multiplication Table in MATLAB Using while Loops
18 views (last 30 days)
Show older comments
i want answer like this
7*1=7
.
.
.
.
7*12=84
help me
0 Comments
Accepted Answer
KSSV
on 11 Feb 2021
% Create 7 table
n = 1:13;
m = n.*7;
table = [n;m] ;
fprintf('7 x %d = %d \n',table)
0 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!