|
Contents | Previous | Next | Subchapters |
| Syntax |
spread(file, item left, top, right, bottom) |
| See Also | read , write , xlread |
If all cells of the current worksheet within the specified range
contain numbers, the spget function returns an NR by NC
double-precision matrix. If the first cell in the specified
range is text data, the range specified must be a vector.
Note: If you specify a range that is outside of the current worksheet, the SigmaPlot server
will generate an exception. If retrieving numeric data, all cells within the specified
must contain valid numeric data. If retrieving character data, all cells in the
specified column must contain valid text data.
clear
file = [OM_INSTALL,"\example\IO\SplotSample.jnb"]
spread(file, "RationalData", 1, 1, 4, 2)
O-Matrix will echo,
{
[ 3.14159 , 6.28319 , 9.42478 , 12.5664 ]
[ 6.28319 , 12.5664 , 18.8496 , 25.1327 ]
}