フィルターのクリア

How is the Riemann-Liouville fractional order integral code in MATLAB?

4 ビュー (過去 30 日間)
iraj mohammadpour
iraj mohammadpour 2023 年 12 月 2 日
編集済み: Walter Roberson 2023 年 12 月 2 日
How is the Riemann-Liouville fractional order integral code in MATLAB?
  1 件のコメント
iraj mohammadpour
iraj mohammadpour 2023 年 12 月 2 日
移動済み: Walter Roberson 2023 年 12 月 2 日
Riemann-Liouville fractional order integral formula

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

回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 12 月 2 日
編集済み: Walter Roberson 2023 年 12 月 2 日
syms alpha t s real
syms f(s)
Iaf(t) = 1/gamma(alpha) * int((t-s)^(alpha-1) * f, s, 0, t)
Iaf(t) = 
%example
subs(Iaf, {f}, {sin(s)})
ans(t) = 
subs(Iaf, {alpha, f}, {sym(5)/4, sin(s)})
ans(t) = 
%example 2
subs(Iaf, {f}, {s*(s-5)})
ans(t) = 
subs(Iaf, {alpha, f}, {sym(5)/4, s*(s-5)})
ans(t) = 

カテゴリ

Help Center および File ExchangeNumbers and Precision についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by