| 
 4.1.2 ExpWave 
 
Command structure of ExpWave. 
ExpWave returns a numerical value in case the first argument is numeric, otherwise a CheckedExpWave is returned. CheckedExpWave is a data type which marks a ExpWave description as being syntactically correct. CheckedExpWave should not be defined directly.  
 A CheckedExpWave can be displayed with standard Mathematica graphic functions such as Plot or with Analog Insydes graphic functions such as TransientPlot.  
 
ExpWave has the following optional arguments:   
 
Arguments of ExpWave. 
Examples 
Load Analog Insydes. 
In[1]:= <<AnalogInsydes` 
Define time-dependent exponential source. 
In[2]:= Vexp[t_] = ExpWave[t, 1, -1, 1, 0.1, 2] 
Out[2]=   
Display the signal. 
In[3]:= TransientPlot[Vexp[t], {t, 0, 8}] 
  
Out[3]=   
 |