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.
1
Expert's answer
2012-11-12T06:00:05-0500
Unfortunately, your question requires a lot of work and cannot be done for free. Submit it with all requirements as an assignment to our control panel and we'll assist you.
Comments
Leave a comment