Azzera filtri
Azzera filtri

why i receive Nan for integral -inf to -inf ?

2 visualizzazioni (ultimi 30 giorni)
for example:
if true
integral(@(x)exp(-(x.^2)/2),-inf,-inf)
end

Risposta accettata

Richard Marveldoss
Richard Marveldoss il 21 Lug 2017
The integral from -inf to -inf over exp(-(x.^2)/2) is the same as calculating the area of the rectangle bounded by -inf and -inf with a height e(-(x.^2)/2) evaluated at -inf(which is 0).The difference between -infs will return an NaN in MATLAB . The NaN times the height(0) results in NaN as well. The documentation link for properties of NaN : https://www.mathworks.com/help/matlab/ref/nan.html

Più risposte (1)

Steven Lord
Steven Lord il 21 Lug 2017
For computing that integral, you probably want to use the erf and/or erfc functions.

Categorie

Scopri di più su Time Series in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by