wk1read

Purpose

Read a Lotus123 WK1 spreadsheet file into a matrix.

Synopsis

M = wk1read('filename')
M = wk1read('filename',r,c)
M = wk1read('filename',range)

Description

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).

M = wk1read('filename',range) reads the range of values specified by the parameter range, where range can be

  • A four-element vector specifying the cell range in the format
    [upper_left_x upper_left_y lower_right_x lower_right_y]
    
  • A cell range specified as a string; for example, 'A1...C5'.
  • A named range specified as a string; for example, 'Sales'.

    See Also

    wk1write
    

    (c) Copyright 1994 by The MathWorks, Inc.