removed \codeterm (replaced by \entermde)

This commit is contained in:
2019-12-10 09:14:10 +01:00
parent c063cc9f0e
commit 39a1e51bc4
4 changed files with 100 additions and 99 deletions

View File

@@ -93,15 +93,15 @@ number of datasets.
\subsection{Simple plotting}
Creating a simple line-plot is rather easy. Assuming there exists a
variable \varcode{y} in the \codeterm{workspace} that contains the
measurement data it is enough to call \code[plot()]{plot(y)}. At the
first call of this function a new \codeterm{figure} will be opened and
the data will be plotted with as a line plot. If you repeatedly call
this function the current plot will be replaced unless the
\code[hold]{hold on} command was issued before. If it was, the current
plot is held and a second line will be added to it. Calling
\code[hold]{hold off} will release the plot and any subsequent
plotting will replace the previous plot.
variable \varcode{y} in the \entermde{Arbeitsbereich}{workspace} that
contains the measurement data it is enough to call
\code[plot()]{plot(y)}. At the first call of this function a new
\enterm{figure} will be opened and the data will be plotted with as a
line plot. If you repeatedly call this function the current plot will
be replaced unless the \code[hold]{hold on} command was issued
before. If it was, the current plot is held and a second line will be
added to it. Calling \code[hold]{hold off} will release the plot and
any subsequent plotting will replace the previous plot.
In our previous call to \varcode{plot} we provided just a single
variable containing the y-values of the plot. The x-axis will be
@@ -375,7 +375,7 @@ purpose. For example, we have a number of measurements of a system's
response to a certain stimulus intensity. There is no dependency
between the data points, drawing them with a line-plot would be
nonsensical (figure\,\ref{scatterplotfig}\,A). In contrast to
\codeterm{}{plot} we need to provide x- and y-coordinates in order to
\code{plot()} we need to provide x- and y-coordinates in order to
draw the data. In the example we also provide further arguments to set
the size, color of the dots and specify that they are filled
(listing\,\ref{scatterlisting1}).