comparison scripts/plot/plot.m @ 9051:1bf0ce0930be

Grammar check TexInfo in all .m files Cleanup documentation sources to follow a few consistent rules. Spellcheck was NOT done. (but will be in another changeset)
author Rik <rdrider0-list@yahoo.com>
date Fri, 27 Mar 2009 22:31:03 -0700
parents dbd0c77e575e
children 16f53d29049f
comparison
equal deleted inserted replaced
9044:656ad518f385 9051:1bf0ce0930be
154 ## 154 ##
155 ## This command will plot the data in the variable @code{b}, 155 ## This command will plot the data in the variable @code{b},
156 ## with points displayed as @samp{*} with a marker size of 3. 156 ## with points displayed as @samp{*} with a marker size of 3.
157 ## 157 ##
158 ## @example 158 ## @example
159 ## @group
159 ## t = 0:0.1:6.3; 160 ## t = 0:0.1:6.3;
160 ## plot (t, cos(t), "-;cos(t);", t, sin(t), "+3;sin(t);"); 161 ## plot (t, cos(t), "-;cos(t);", t, sin(t), "+3;sin(t);");
162 ## @end group
161 ## @end example 163 ## @end example
162 ## 164 ##
163 ## This will plot the cosine and sine functions and label them accordingly 165 ## This will plot the cosine and sine functions and label them accordingly
164 ## in the key. 166 ## in the key.
165 ## 167 ##