comparison doc/interpreter/dynamic.txi @ 8817:03b7f618ab3d

include docstrings for new functions in the manual
author John W. Eaton <jwe@octave.org>
date Thu, 19 Feb 2009 15:39:19 -0500
parents fe1bea543cd4
children 8463d1a2e544
comparison
equal deleted inserted replaced
8816:a4a8f871be81 8817:03b7f618ab3d
613 SparseMatrix sm (data, ridx, cidx, nr, nc); 613 SparseMatrix sm (data, ridx, cidx, nr, nc);
614 @end group 614 @end group
615 @end example 615 @end example
616 616
617 @noindent 617 @noindent
618 which creates the matrix given in section @ref{Storage}. Note that 618 which creates the matrix given in section
619 the compressed matrix format is not used at the time of the creation 619 @ref{Storage of Sparse Matrices}. Note that the compressed matrix
620 of the matrix itself, however it is used internally. 620 format is not used at the time of the creation of the matrix itself,
621 however it is used internally.
621 622
622 As previously mentioned, the values of the sparse matrix are stored 623 As previously mentioned, the values of the sparse matrix are stored
623 in increasing column-major ordering. Although the data passed by the 624 in increasing column-major ordering. Although the data passed by the
624 user does not need to respect this requirement, the pre-sorting the 625 user does not need to respect this requirement, the pre-sorting the
625 data significantly speeds up the creation of the sparse matrix. 626 data significantly speeds up the creation of the sparse matrix.