Tagged Questions
1
vote
1answer
152 views
Using different random values at each recursion step
I have the following code:
ϕ[0] := π/4
ϕ[n_] := Exp[-n] ϕ[n - 1] + Sqrt[1 - Exp[-2 n]] M
M = RandomVariate[NormalDistribution[0, 1]]
For this recursion relation, ...