can i make a matrix like this?

3 views (last 30 days)
Austin
Austin on 1 Oct 2013
Edited: Austin on 2 Oct 2013

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 1 Oct 2013
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

More Answers (1)

Austin
Austin on 1 Oct 2013
Your script works perfectly! Thanks a lot Azzi Abdelmalek.!

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!