Is it possible to perform integration from zero to inf in Matlab?
93 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sergey Dukman
am 29 Sep. 2015
Kommentiert: Sergey Dukman
am 29 Sep. 2015
Hello, I have two data vectors and would like to integrate their product from zero to infinity. Is it even possible and how?
Regards, Sergey
2 Kommentare
Steven Lord
am 29 Sep. 2015
That's an impressive machine that has enough memory to store an infinitely long vector. Can you clarify exactly what you have? Vectors, functions, etc?
Akzeptierte Antwort
Walter Roberson
am 29 Sep. 2015
If you had two functions you could create another function that was the multiple of the others and then integrate that:
h = @(x) f(x) .* g(x)
integral(h, 0, inf)
But if you have data vectors then they must be finite vectors and it would not seem to make sense to integrate a finite vector to infinity. Please expand on your meaning about the vectors?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Wind Power finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!