-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlgr_Cby_2_.m
23 lines (23 loc) · 970 Bytes
/
lgr_Cby_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
function out=lgr_Cby_2_(N,X,rishe, u_)
% Overview
% This function returns a Shifted Lagrange Chebyshev(2nd) matrix functions.
%
%out = lgr_Cby_2_(N,X,rishe, u_)
%
%inputs:
%------------------------------------------------------
%| N : integer : N+1 sentences are |
%| considered |
%| X : [1xm] double : Inputs of u_(x) in |
%| Lagrange functions |
%| pints: [1xN] double : Inputs for making |
%| Lagrange polynomilas |
%| u_ : symbolic function: Shifting parameter |
%------------------------------------------------------
%
%Output:
%-------------------------------------------------------------------
%| out : [mxN] double : shifted Lagrange Chebyshev(2nd) functions|
%-------------------------------------------------------------------
out=lgr_Jacobi_(N,X,rishe, u_);
end