Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda do Scilab >> Linear Algebra > Kernel > fullrf

fullrf

fatoração de posto completo (ou cheio)

Seqüência de Chamamento

[Q,M,rk]=fullrf(A,[tol])

Parâmetros

A

matriz de reais ou complexos

tol

número real (limiar para determinação do posto)

Q,M

matriz de reais ou complexos

rk

inteiro(posto de A)

Descrição

Fatoração de posto cheio : fullrf retorna Q e M tais que A = Q*M com Im(Q)=Im(A) e Nuc(M)=Nuc(A), Q de posto-coluna cheio, M de posto-linha cheio e rk = rank(A) = #columns(Q) = #rows(M).

tol é um parâmetro real opcional (valor real padrão é sqrt(%eps)). O posto rk de A é definido como o número de valores singulares maiores que norm(A)*tol.

Se A é simétrica, fullrf retorna M=Q'.

Exemplos

A=rand(5,2)*rand(2,5);
[Q,M]=fullrf(A);
norm(Q*M-A,1)
[X,d]=rowcomp(A);Y=X';
svd([A,Y(:,1:d),Q])        //span(Q) = span(A) = span(Y(:,1:2)) (span = "gerado")
Report an issue
<< colcomp Kernel fullrfk >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:09:43 CET 2017