I was wondering how I would return an expression without it being evaluated.
Define LibPub exactly(r,l,c,vi,vf)=
Func
:Local t
:Local diff
:If l=0 Then
: t:=−1*((1)/(r*c))
:Else
: t:=−1*((1)/(((r)/(l))))
:EndIf
:diff:=vi-vf
:setMode(5,3)
:Disp (vf+diff*e^(t))
:EndFunc
I want it to return something like
.
Is there a way to achieve this? Thanks for any help!