Problem 1463. Pascal's Matrix

Given an integer n ≥ 0, generate the ( n+1) × ( n+1) lower triangular Pascal's Matrix.

Examples:

 pascalMat(0)
 ans =
     1
 pascalMat(1)
 ans =
     1     0 
     1     1 
 pascalMat(2)
 ans =
     1     0     0
     1     1     0
     1     2     1

Neither string operations nor interpolations are allowed!

Solution Stats

47.09% Correct | 52.91% Incorrect
Last Solution submitted on Mar 27, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers280

Community Treasure Hunt

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

Start Hunting!