| MATLAB Function Reference | Search  Help Desk |
| wk1read | See Also |
Read a Lotus123 WK1 spreadsheet file into a matrix
M = wk1read(filename) M = wk1read(filename,r,c) M = wk1read(filename,r,c,range)
M = wk1read(filename)
reads a Lotus123 WK1 spreadsheet file into the matrix M.
M = wk1read(filename,r,c)
starts reading at the row-column cell offset specified by (r,c). r and c are zero based so that r=0, c=0 specifies the first value in the file.
M = wk1read(filename,r,c,range)
reads the range of values specified by the parameter range, where range can be:
[upper_left_row upper_left_col lower_right_row lower_right_col]
'A1...C5'.
'Sales'.
wk1write Write a matrix to a Lotus123 WK1 spreadsheet file