Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - 日本語

Change language to:
English - 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ヘルプ >> Code Matlab => Scilab > Matlab-Scilab equivalents > N > null (Matlab function)

null (Matlab function)

Null space of a matrix

Matlab/Scilab equivalent

Matlab Scilab
null(a)
null(a, 'r')
% No equivalent
% No equivalent
kernel(a)
// No equivalent
kernel(a, tolerance)
kernel(a, tolerance, "qr")

Examples

Matlab Scilab
a = [1 3 2; 2 -3 -5];
null(a)
size(null(a),2)
a = [1 3 2; 2 -3 -5];
kernel(a)
size(kernel(a),2) // Nullity of a
Report an issue
<< nargout (Matlab function) N num2str (Matlab function) >>

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:
Mon Jan 03 14:38:07 CET 2022