Description Usage Arguments Value Examples
Given matrix equation Aw=b, find the basis representation of the complete solution (an affine transformation), returning the homogeneous and particular solution which describe the polytope in alpha-space
| 1 | complete_solution(A, b)
 | 
| A | is the lhs of the matrix equation Ax=b | 
| b | is the rhs of the matrix equation Ax=b | 
a list object, with the first element($particular) as the particular solution and the the second element as a matrix with its columns containing the basis of the null space($homogeneous)
| 1 2 3 | A <- matrix(1, ncol = 3)
b <- 0.5
complete_solution(A, b)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.