필터 지우기
필터 지우기

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개)

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 CenterFile Exchange에서 Numbers and Precision에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by