-
Notifications
You must be signed in to change notification settings - Fork 1
/
I_Cby_frac_2.m
31 lines (28 loc) · 949 Bytes
/
I_Cby_frac_2.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
function out=I_Cby_frac_2(N,r,u_)
%
%
% Overview
% This function returns an operational matrix of Integral of Chebyshev(2nd) functions.
%
%out = I_Cby_frac_2(N,r,u_)
%
%inputs:
%------------------------------------------------------------
%| N : integer : From Chebyshev(2nd) sentence 0 |
%| to Chebyshev(2nd) sentence N |
%| r : double : Order of integral |
%| u_ : symbolic function: Shifting parameter |
%------------------------------------------------------------
%
%Output:
%---------------------------------------------------------------
%| out : [(N+1)x(N+1)] double : Operational Integral Chebyshev |
%---------------------------------------------------------------
%
%
% Caution!:This function works for returning the integral
% operational matrix for interval [0,b].
%
theta_=1;
out=I_Gnbr_frac(N,theta_,r,u_);
end