필터 지우기
필터 지우기

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

조회 수: 11 (최근 30일)
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

답변 (4개)

asma sarouji
asma sarouji 2018년 11월 2일

Guillaume
Guillaume 2015년 4월 30일
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 2015년 4월 30일
편집: Walter Roberson 2021년 8월 20일
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
Scott
Scott 2015년 4월 30일
Awesome! How do you display this answer so that it prints it in a matrix form?
Aitazaz Ahsan
Aitazaz Ahsan 2021년 8월 20일
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.

댓글을 달려면 로그인하십시오.


Tony Nguyen
Tony Nguyen 2021년 8월 15일
clc;
clear all;
for i = 1:5
fprintf('%4d',i*[1:i])
fprintf('\n')
end

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by