Using Taylor Expansions: how to impose 'large' approximations, i.e., "for large x"?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Say I have a function:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/572947/image.png)
and I want to see what happens in the region of large x, i.e., I Taylor expad f(x) in the region of large x and see how the functiuon changes. I Can do this on paper but how do I instruct matlab to take x as being say x>>a where a is small?
0 Kommentare
Antworten (1)
Walter Roberson
am 5 Apr. 2021
format long g
syms alpha x
f = sin(alpha*x)
fapprox(x) = taylor(f, x, 10000, 'order', 20)
fapprox(3183*pi)
fapprox_tenth(x) = simplify(subs(ans, alpha, 1/10))
fapprox_tenth(3183*pi)
vpa(ans)
sin(3183*pi*1/10)
That's a pretty good approximation
sin(10*3183*pi*1/10)
vpa(fapprox_tenth(10*3183*pi))
but that is not.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!