我想在matlab中做一個指數隨機數生成器。生活會很容易,如果我可以只使用exprand但沒了:(這是我有我想看看它是否是正確的功能。 function x=erv(lambda)%generatae Exponential random variables
x=(-(1/lambda)*log(urv(1)));%using the urv function from 1a
end
所以
嗨我試圖產生一個適合我的三個指數衰減。產生令人滿意的結果我沒有成功。這是我得到:http://i.imgur.com/Nx44wsS.jpg 任何幫助,非常感謝。我的代碼如下。 import pylab as plb
import matplotlib.pyplot as plt
import matplotlib.axes as ax
import scipy as sp
from sc