[solved] – Question 9059
The Pascale triangle holds coefficients in the series expansion of (1 + x)n, where n = 0, 1, 2, … The top of this triangle, for n = 0, 1, 2, is shown here
1
1 1
1 2 1
Write MATLAB function t = pasctri(n) that generates the Pascal triangle t up to the level n.
Remark. Two-dimensional arrays in MATLAB must have the same number of columns in each row. In order to avoid error messages you have to add a certain number of zero entries to the right of last nonzero entry in each row of t but one. This t = pasctri(2).
t =
1 0 0
1 1 0
1 2 1
is an example of the array t for n = 2.
Expert Answer
OR

