필터 지우기
필터 지우기

Plotting infinite series on interval

조회 수: 3 (최근 30일)
jacob Mitch
jacob Mitch 2019년 10월 9일
I have the following function for error approximation
function y = Approx(x,N);
Approx=zeros(1,length(x));
for n=0:N
Approx=Approx+(((-1)^n)*x^(2*n+1))/((factorial(n))*(2*n+1));
end
Approx=(2/sqrt(pi))*Approx
My question is how would I plot this on a given interval say -1,1 as well as plotting it again the built in erf in Matlab

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by