Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - English

Change language to:
Français - 日本語 - Português

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

Scilab help >> Linear Algebra > kernel

kernel

kernel, nullspace

Calling Sequence

W=kernel(A [,tol,[,flag])

Arguments

A

full real or complex matrix or real sparse matrix

flag

character string 'svd' (default) or 'qr'

tol

real number

W

full column rank matrix

Description

W=kernel(A) returns the kernel (nullspace) of A. If A has full column rank then an empty matrix [] is returned.

flag and tol are optional parameters: flag = 'qr' or 'svd' (default is 'svd').

tol = tolerance parameter (of order %eps as default value).

Examples

A=rand(3,1)*rand(1,3);
A*kernel(A)
A=sparse(A);
clean(A*kernel(A))

See Also

  • colcomp — column compression, kernel, nullspace
  • fullrf — full rank factorization
  • fullrfk — full rank factorization of A^k
  • linsolve — linear equation solver

Authors

F.D.;

<< inv Linear Algebra kroneck >>

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:
Wed Oct 05 12:09:41 CEST 2011