comparison scripts/pkg/pkg.m @ 10793:be55736a0783

Grammarcheck the documentation from m-files.
author Rik <octave@nomad.inbox5.com>
date Sun, 18 Jul 2010 20:35:16 -0700
parents 81a43049dee2
children 693e22af08ae
comparison
equal deleted inserted replaced
10792:91342260063e 10793:be55736a0783
67 ## pkg uninstall image 67 ## pkg uninstall image
68 ## @end example 68 ## @end example
69 ## @noindent 69 ## @noindent
70 ## removes the @code{image} package from the system. If another installed 70 ## removes the @code{image} package from the system. If another installed
71 ## package depends on the @code{image} package an error will be issued. 71 ## package depends on the @code{image} package an error will be issued.
72 ## The package can be uninstalled anyway by using the @code{-nodeps} option. 72 ## The package can be uninstalled anyway by using the @option{-nodeps} option.
73 ## @item load 73 ## @item load
74 ## Add named packages to the path. After loading a package it is 74 ## Add named packages to the path. After loading a package it is
75 ## possible to use the functions provided by the package. For example, 75 ## possible to use the functions provided by the package. For example,
76 ## @example 76 ## @example
77 ## pkg load image 77 ## pkg load image
169 ## pkg global_list 169 ## pkg global_list
170 ## @end example 170 ## @end example
171 ## @item rebuild 171 ## @item rebuild
172 ## Rebuilds the package database from the installed directories. This can 172 ## Rebuilds the package database from the installed directories. This can
173 ## be used in cases where for some reason the package database is corrupted. 173 ## be used in cases where for some reason the package database is corrupted.
174 ## It can also take the @code{-auto} and @code{-noauto} options to allow the 174 ## It can also take the @option{-auto} and @option{-noauto} options to allow the
175 ## autoloading state of a package to be changed. For example 175 ## autoloading state of a package to be changed. For example
176 ## 176 ##
177 ## @example 177 ## @example
178 ## pkg rebuild -noauto image 178 ## pkg rebuild -noauto image
179 ## @end example 179 ## @end example
189 ## @end example 189 ## @end example
190 ## 190 ##
191 ## @noindent 191 ## @noindent
192 ## where @code{builddir} is the name of a directory where the temporary 192 ## where @code{builddir} is the name of a directory where the temporary
193 ## installation will be produced and the binary packages will be found. 193 ## installation will be produced and the binary packages will be found.
194 ## The options @code{-verbose} and @code{-nodeps} are respected, while 194 ## The options @option{-verbose} and @option{-nodeps} are respected, while
195 ## the other options are ignored. 195 ## the other options are ignored.
196 ## @end table 196 ## @end table
197 ## @end deffn 197 ## @end deffn
198 198
199 function [local_packages, global_packages] = pkg (varargin) 199 function [local_packages, global_packages] = pkg (varargin)