In my investigation Derive can only evaluate the derivative of function f(x) with respect to x. My attempt below does not produce the expected result because I try to find the derivative of x(t) and y(t) with respect to t.
\documentclass{article}
\usepackage{pst-plot,pst-node}
\def\x{sin(t)}
\def\y{cos(t)}
\def\xx{Derive(1,\x)}
\def\yy{Derive(1,\y)}
\begin{document}
\begin{pspicture}[algebraic](-.2,-2.2)(\dimexpr\psPiFour cm+.2cm,2.2)
\psparametricplot{0}{TwoPi 2 mul}{\xx|\yy}
\end{pspicture}
\end{document}
Can anybody here help me to let
Derivealso work with any variable such that my project here (click) can be easily done without having to manually calculate the derivative of the given functions?How can we invoke
Derivein postfix form? If it is possible then the first question can be solved just by usingEDas follows,<postfix expression in x> 1 Derive t /x ED
