How can we plot the following three functions
- f(x) = sin(x)
- k(x) = cos(x)
- u(x) = x²
for x ∈ [0,1]
on a single plot with the help of TikZ?
boxplotpgfplotsplottikz-pgf
How can we plot the following three functions
for x ∈ [0,1]
on a single plot with the help of TikZ?
Best Answer
In pgfplots, you can implement the task with
Since the options are provided for the complete axis, the domain is shared among all these functions. The TikZ function
deg(x)
convertsx
from radians to degrees (similar to the postfix operatorx r
which does not appear to work in pgfplots).The
\legend
describes the legend's values and thelegend pos
option is one of the prescribed ways to configure the legend.You could also use
\addplot[color=red]
to configure color/marker and what-ever styles as discussed by Tobi.