Pascal's Triangle - MATLAB Cody - MATLAB Central

Problem 37. Pascal's Triangle

Difficulty:Rate

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

54.54% Correct | 45.46% Incorrect
Last Solution submitted on Mar 04, 2025

Problem Comments

Solution Comments

Show comments
Primes and Rough Numbers, Basic ideas
What is a rough number? What can they be used...
3
5

Problem Recent Solvers4352

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!
Go to top of page