单项选择题
For the function f (x) = sin x / (x2 + 4x + 3), find the first 9 terms of the power series expansion when a = 0, the syntax is correct
A、syms x; f=sin(x)/(x^2+4*x+3); y=taylor(f,x,'Order',9)
B、syms x; f=sin(x)/(x^2+4*x+3); y=taylor(f,x,'Order',6)
C、syms x; f=sin(x)/(x^2+4*x+3); y=taylor(f,x,1,'Order',9)
D、syms x; f=sin(x)/(x^2+4*x+3); y=taylor(f,x,1,'Order',6)