Ticker

6/recent/ticker-posts

Creating graph of a function in LaTeX | Tikz and pgfplots Example - Quick Answerz

How to create a graph of function in \(\LaTeX\) using Tikz and pgfplots

\(\LaTeX\) Code:

\documentclass[margin=5mm]{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot{-4+x^2-x^4/32};
\end{axis}
\end{tikzpicture}
\end{document}

OUTPUT Generated:


Related Questions

  • tikz plot examples
  • pgfplots
  • pgfplots latex
  • pgfplots examples
  • tikz axis
  • line graph in latex
  • how to draw graph of a function
  • how to add a graph to latex
  • creating graphs in latex
  • how to graph a function in latex
  • how to draw a graph in latex
  • how to create a graph of a function
  • How do you make an XY graph in LaTeX?
  • How do you insert a graph in LaTeX?
  • How do you plot a graph on TikZ?
  • tikz add text in plot
  • plot function in tikz
  • tikz graph examples
  • tikz directed graph example
  • plot function in tikz
  • tikzpicture plot examples

Post a Comment

0 Comments