comparison scripts/general/loadobj.m @ 10821:693e22af08ae

Grammarcheck documentation of m-files Add newlines between @item fields for readability.
author Rik <octave@nomad.inbox5.com>
date Mon, 26 Jul 2010 21:25:36 -0700
parents 16f53d29049f
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
10820:c44c786f87ba 10821:693e22af08ae
20 ## @deftypefn {Function File} {@var{b} =} loadobj (@var{a}) 20 ## @deftypefn {Function File} {@var{b} =} loadobj (@var{a})
21 ## Method of a class to manipulate an object after loading it from a file. 21 ## Method of a class to manipulate an object after loading it from a file.
22 ## The function @code{loadobj} is called when the object @var{a} is loaded 22 ## The function @code{loadobj} is called when the object @var{a} is loaded
23 ## using the @code{load} function. An example of the use of @code{saveobj} 23 ## using the @code{load} function. An example of the use of @code{saveobj}
24 ## might be to add fields to an object that don't make sense to be saved. 24 ## might be to add fields to an object that don't make sense to be saved.
25 ## For example 25 ## For example:
26 ## 26 ##
27 ## @example 27 ## @example
28 ## @group 28 ## @group
29 ## function b = loadobj (a) 29 ## function b = loadobj (a)
30 ## b = a; 30 ## b = a;