how do i write this in matlab?
조회 수: 3 (최근 30일)
이전 댓글 표시

E_n, n=0,..,10 is an Euler polynomial
댓글 수: 2
John D'Errico
2021년 8월 4일
편집: John D'Errico
2021년 8월 4일
Will you please stop asking the same question? It seems you ask a question, get an answer, then ask the same question again. I will start to close your duplicate questions now.
채택된 답변
David Hill
2021년 8월 4일
syms x
i=0:.1:1;
for k=0:10
for j=1:11
K(j,k+1)=int(euler(k,x),x,[0,i(j)]);
end
end
K=double(K);
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!