Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - 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 >> Sparse Matrix > Sparse Matrix Manipulation > speye

speye

sparse identity matrix

Syntax

Isp = speye(A)
Isp = speye(nrows, ncols)

Arguments

nrows

integer (number of rows)

ncols

integer (number os columns)

A

sparse matrix

sp

sparse identity matrix

Description

Isp=speye(nrows,ncols) returns a sparse identity matrix Isp with nrows rows, ncols columns. (Non square identity matrix have a maximal number of ones along the main diagonal).

Isp=speye(A) returns a sparse identity matrix with same dimensions as A. If [m,n]=size(A), speye(A) is equal to speye(m,n).

Hence, speye(3) is equal to speye(1,1), NOT to speye(3,3).

Examples

eye(3,3) - full(speye(3,3))

See also

  • sparse — sparse matrix definition
  • full — sparse to full matrix conversion
  • eye — identity matrix
  • diag — diagonal including or extracting
  • toeplitz — Toeplitz matrix (chosen constant diagonal bands)
  • spzeros — sparse zero matrix
  • spones — sparse matrix
Report an issue
<< nnz Sparse Matrix Manipulation spones >>

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:23:27 CET 2022