Example Matrix matrixGaussianEliminate 001
|
Notes and Hints
(define X #(nummat[3 4]| 12 2 3 17
1 5 -3 3
9 5 -3 11))
Returns:
Returns:
Returns: #(nummat[3 4]| 12.0 2.0 3.0 17.0
0.0 4.833 -3.25 1.583
0.0 0.0 -2.896 -2.896
)
Note2, This function implements an approximate form of Gaussian
elimination by fudging around singular conditions where dividing by zero would be a problem..
Here are examples of the matrixGaussianEliminate function at work.
Matrix matrixGaussianEliminate 001 | NumMatrix matrixGaussianEliminate 001 |
Here is the link to the current function used in this example.
Here are a number of links to other related functions.
makeGramMatrix(#void) | makeGaussianMatrix(#void) | matrixGaussianSubstitute(#void) |
Here are the links to the data types of the arguments used in this example. Here are a number of links to examples having similar argument types.
Matrix
Integer
Analytic Information Server (AIS)AIS Component Systems
|