필터 지우기
필터 지우기

Using Taylor Expansions: how to impose 'large' approximations, i.e., "for large x"?

조회 수: 1 (최근 30일)
HC98
HC98 2021년 4월 5일
답변: Walter Roberson 2021년 4월 5일
Say I have a function:
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?

답변 (1개)

Walter Roberson
Walter Roberson 2021년 4월 5일
format long g
syms alpha x
f = sin(alpha*x)
f = 
fapprox(x) = taylor(f, x, 10000, 'order', 20)
fapprox(x) = 
fapprox(3183*pi)
ans = 
fapprox_tenth(x) = simplify(subs(ans, alpha, 1/10))
fapprox_tenth(x) = 
fapprox_tenth(3183*pi)
ans = 
vpa(ans)
ans = 
0.80901699437494742410229341718282
sin(3183*pi*1/10)
ans =
0.809016994374915
That's a pretty good approximation
sin(10*3183*pi*1/10)
ans =
9.49298408281609e-14
vpa(fapprox_tenth(10*3183*pi))
ans = 
0.80901699437494742410229341718282
but that is not.

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by