Question

(Using MATLAB) Write a program using loops that will print the following multiplication table: 1 2...

(Using MATLAB) Write a program using loops that will print the following multiplication table:
1
2 4
3 6 9
4 8 12 16
5 10 15 20 25

0 0
Add a comment Improve this question Transcribed image text
Answer #1

MATLAB Code:

for m = 1:5
for n = 1:m
fprintf('%d ', m*n);
end
fprintf('\n');
end

Code:

t, Execute | > Share Code demo.mx 1 for m-1:5 for n 1:m fprintf(%d ., m*n); 4 end fprintfIn); 6 end

Output:

2 4 3 6 9 4 8 12 16 5 10 15 20 25 sh-4.3$

Add a comment
Answer #2

Write a script to input a number between 1 and 15 and print the Multiplication Tables as follows. 

Add a comment
Know the answer?
Add Answer to:
(Using MATLAB) Write a program using loops that will print the following multiplication table: 1 2...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT