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.57% Correct | 45.43% Incorrect
Last Solution submitted on May 13, 2025

Problem Comments

Solution Comments

Show comments
PIVlab surpasses 100K all-time File Exchange downloads
During the past twelve months, PIVlab, a MATLAB Community Toolbox for particle...
2
4
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
4

Group

Basics - Cell Arrays Image
Basics - Cell Arrays
  • 10 Problems
  • 1277 Finishers

Problem Recent Solvers4399

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