pascal {matlab} | R Documentation |
MATLAB pascal function
Description
Generate Pascal matrix.
Usage
pascal(n, k=0)
Arguments
n |
numeric scalar specifying order |
k |
numeric scalar specifying desired option. Valid values are 0, 1, or 2 |
Details
Specifying returns symmetric positive definite matrix
with integer entries taken from Pascal's triangle.
Specifying returns the lower triangular Cholesky factor
(up to the signs of the columns) of the Pascal matrix.
Specifying returns a cube root of the identity matrix.
Value
Returns matrix of order n
according to specified option k
.
Author(s)
P. Roebuck proebuck1701@gmail.com
Examples
pascal(4)
pascal(3, 2)
[Package matlab version 1.0.4.1 Index]