cell/totsum.m

From Spinach Documentation Wiki
Jump to: navigation, search

A sum across all dimensions of a cell array.

Syntax

    S=totsum(A)

Parameters

    A - a cell array of numerical objects

Outputs

    S - the sum of all elements in A

Examples

>> totsum({1,2,sparse(3)}')

ans =

   (1,1)        6

Notes

If all elements of A are sparse, a sparse result will be returned.

See also

cell/minus.m, cell/plus.m, cell/mtimes.m, cell/blkdiag.m, cell/complex.m, cell/inflate.m, cell/times.m, Appendix_H:_Matlab_object_overloads

Version 2.9, authors: Ilya Kuprov