Filter löschen
Filter löschen

hi every one i need series for erfc(x) match with it in plot

1 Ansicht (letzte 30 Tage)
sura
sura am 22 Sep. 2022
Kommentiert: Torsten am 22 Sep. 2022
i need correct series for the equation of erfc(x) and maching with it in plot
  3 Kommentare
sura
sura am 22 Sep. 2022
there are series representation. taylor series is series expansion. in wolfarm website you can write series erfc(x). you will find three or more series representation.
i need one of these match with it with function by k not x

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Sam Chak
Sam Chak am 22 Sep. 2022
Are you looking for something like this?
syms x
sympref('PolynomialDisplayStyle', 'ascend');
f = erfc(x); % function
T = taylor(f, 'Order', 8) % Taylor series
T = 
xd = -2:0.1:2;
yd = subs(f, x, xd);
fplot(T, [-2, 2])
hold on
plot(xd, yd, 'r-.'), grid on
title('Taylor approximation vs. actual function')
legend('Taylor','Function')
  3 Kommentare
Torsten
Torsten am 22 Sep. 2022
If you had studies Sam Chak's answer, you would have seen that your series expansion is just the one that he used for the plot.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Error Functions finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by