Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of Pascal's Triangle.

Examples:

 pascalTri(0)
 ans =
     1
 pascalTri(1)
 ans =
     1     1
 pascalTri(2)
 ans =
     1     2     1

Solution Stats

9240 Solutions

4493 Solvers

Last Solution submitted on Feb 01, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...

Problem Recent Solvers4493

Suggested Problems

More from this Author96

Problem Tags

Community Treasure Hunt

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

Start Hunting!