can i make a matrix like this?

조회 수: 1 (최근 30일)
Austin
Austin 2013년 10월 1일
편집: Austin 2013년 10월 2일

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 10월 1일
n=4;
m=4;
a=zeros(m,n)
a(1:m,1)=1:m
a(1,1:n)=1:n
for ii=2:m
for jj=2:n
a(ii,jj)=a(ii,jj-1)*a(ii-1,jj)
end
end

추가 답변 (1개)

Austin
Austin 2013년 10월 1일
Your script works perfectly! Thanks a lot Azzi Abdelmalek.!

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by