how do i write this in matlab?

1 回表示 (過去 30 日間)
Relly Syam
Relly Syam 2021 年 8 月 4 日
コメント済み: Relly Syam 2021 年 8 月 4 日

E_n, n=0,..,10 is an Euler polynomial

  2 件のコメント
John D'Errico
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.
Relly Syam
Relly Syam 2021 年 8 月 4 日
I'm sorry, it seems my question is a little different than before, there are some things I don't understand so I think there are other opinions regarding the solution I was hoping for

サインインしてコメントする。

採用された回答

David Hill
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);
  1 件のコメント
Relly Syam
Relly Syam 2021 年 8 月 4 日
Thank you for the help

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by