A= với vòng lặp 100 lần
function A(x) res=0; temp=1; for i=1,100 do res+=temp; temp*=x/i; end return res; end
taylor, maclaurin, loop, khai triển, xấp xỉ
Chuong Tran
0 chủ đề
0 bài viết
function A(x)
res=0;
temp=1;
for i=1,100 do
res+=temp;
temp*=x/i;
end
return res;
end
Python: Tìm giá trị của biểu thức Taylor.
taylor, maclaurin, loop, khai triển, xấp xỉ