vlist#

Purpose#

Lists the contents of a data buffer constructed with vput().

Format#

vlist(dbuf)#
Parameters:

dbuf (Nx1 vector) – a data buffer containing various strings and matrices.

Remarks#

vlist() lists the names of all the strings and matrices stored in dbuf.

Examples#

// Create a data buffer and list its contents
dbuf = vput(0, rndn(3, 3), "myMatrix");
dbuf = vput(dbuf, "test", "myString");
vlist(dbuf);

Source#

vpack.src

See also

Functions vget(), vput(), vread()