Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - Русский

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 >> Sparse Matrix > Sparse Matrix Manipulation > spzeros

spzeros

sparse zero matrix

Syntax

sp=spzeros(nrows,ncols)
sp=spzeros(A)

Arguments

nrows

integer (number of rows)

ncols

integer (number os columns)

A

sparse matrix

sp

sparse zero matrix

Description

sp=spzeros(nrows,ncols) returns a sparse zero matrix sp with nrows rows, ncols columns. (Equivalent to sparse([],[],[nrow,ncols]))

sp=spzeros(A) returns a sparse zero matrix with same dimensions as A. If [m,n]=size(A), spzeros(m,n) and spzeros(A) are equivalent. In particular spzeros(3) is not equivalent to spzeros(3,3).

Examples

m=spzeros(2,2)
a=rand(10,12);
m=spzeros(a)
sum(spzeros(1000,1000))

See also

  • sparse — sparse matrix definition
  • full — sparse to full matrix conversion
  • eye — единичная матрица
  • speye — sparse identity matrix
  • spones — sparse matrix
Report an issue
<< sprand Sparse Matrix Manipulation Sparse Matrix Conversion >>

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:13:25 CET 2017