Re: Graphing recurrences
- Subject: [mg3273] Re: [mg3223] Graphing recurrences
- From: jpk at apex.mpe.FTA-Berlin.de (Jens-Peer Kuska)
- Date: 23 Feb 1996 09:13:04 -0600
- Approved: usenet@wri.com
- Distribution: local
- Newsgroups: wri.mathgroup
- Organization: Wolfram Research, Inc.
- Sender: daemon at wri.com
Hi Kinh,
The definition
y[t_]:=If[t<1.0,
Sin[Pi*t],
y[t-1]+1
]
works fine. You must set a appropriate function for y[t] t in [0,1],
otherwise Your definiton of y ins incomplete.
Hope that helps
Jens