How do i write a script that will print the following multiplication table 1; 2 4; 3 6 9; 4 8 12 16; 5 10 15 20 25

17 vues (au cours des 30 derniers jours)
How do i write a script that will print the following multiplication table 1;2 4;3 6 9; 4 8 12 16; 5 10 15 20 25

Réponses (4)

asma sarouji
asma sarouji le 2 Nov 2018

Guillaume
Guillaume le 30 Avr 2015
This looks like homework (and really easy at that), so here is a very simple solution that probably wouldn't be accepted for homework:
arrayfun(@(x) (1:x)*x, 1:5, 'UniformOutput', false); celldisp(ans)

PaulS
PaulS le 30 Avr 2015
Modifié(e) : Walter Roberson le 20 Août 2021
n=5
A=zeros(n)
for i=1:n
for j =1:n
if j<=i
A(i,j)=i*j
end
end
end
  2 commentaires
Scott
Scott le 30 Avr 2015
Awesome! How do you display this answer so that it prints it in a matrix form?
Aitazaz Ahsan
Aitazaz Ahsan le 20 Août 2021
There is already a matrix with all entries equal to zero so in for loop only the concerned entries are changing and which will give the desired solution inmatrix form.

Connectez-vous pour commenter.


Tony Nguyen
Tony Nguyen le 15 Août 2021
clc;
clear all;
for i = 1:5
fprintf('%4d',i*[1:i])
fprintf('\n')
end

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by