Symbolic Math Toolbox
 Go to function:
  Search    Help Desk 
svd ExamplesSee Also

Symbolic singular value decomposition.

Syntax

Description

sigma = svd(A) is a symbolic vector containing the singular values of a symbolic matrix A.

sigma = svd(vpa(A)) computes numeric singular values, using variable precision arithmetic.

[U,S,V] = svd(A) and [U,S,V] = svd(vpa(A)) return numeric unitary matrices U and V whose columns are the singular vectors and a diagonal matrix S containing the singular values. Together, they satisfy A = U*S*V'.

Symbolic singular vectors are not available.

Examples

The statements

return

See Also

digits, eig, vpa



[ Previous | Help Desk | Next ]