代码搜索:tridiagonal
找到约 218 项符合「tridiagonal」的源代码
代码结果 218
www.eeworm.com/read/350746/10713350
m thomas.m
function x = thomas(varargin)
% THOMAS Solves a tridiagonal linear system
%
% x = THOMAS(A,d) solves a tridiagonal linear system using the very efficient
% Thomas Algorith. The vector x i
www.eeworm.com/read/350746/10713456
m oldthomas.m
function x = thomas(varargin)
% THOMAS Solves a tridiagonal linear system
%
% x = THOMAS(A,d) solves a tridiagonal linear system using the very efficient
% Thomas Algorith. The vector x i
www.eeworm.com/read/449771/7496691
m tdma.m
function X = TDMA(A,D,C,B)
% Tridiagonal Matrix Algorithm(三对角阵算法)
%
% Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix
%
% Input - A is the subdiagonal of the
www.eeworm.com/read/199851/7818408
m tdma.m
function X = TDMA(A,D,C,B)
% Tridiagonal Matrix Algorithm(三对角阵算法)
%
% Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix
%
% Input - A is the subdiagonal of the
www.eeworm.com/read/197108/8028795
m tdma.m
function X = TDMA(A,D,C,B)
% Tridiagonal Matrix Algorithm(三对角阵算法)
%
% Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix
%
% Input - A is the subdiagonal of the
www.eeworm.com/read/494076/6387634
m tdma.m
function X = TDMA(A,D,C,B)
% Tridiagonal Matrix Algorithm(三对角阵算法)
%
% Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix
%
% Input - A is the subdiagonal of the
www.eeworm.com/read/477455/6735938
m tdma.m
function X = TDMA(A,D,C,B)
% Tridiagonal Matrix Algorithm(三对角阵算法)
%
% Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix
%
% Input - A is the subdiagonal of the
www.eeworm.com/read/339677/12210568
m tridiag.m
function X = tridiag( A, B )
% Input - A is an N*N nosingular tridiagonal matrix
% - B is an N*1 matrix
% Ouput - X is an N*1 matrix:the solution of AX = B
N = length(B);
X = zeros(N,1);
b(1) =
www.eeworm.com/read/250746/12386985
m tdma.m
function X = TDMA(A,D,C,B)
% Tridiagonal Matrix Algorithm(三对角阵算法)
%
% Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix
%
% Input - A is the subdiagonal of the
www.eeworm.com/read/213905/15122661
m thomas.m
function x = thomas(varargin)
% THOMAS Solves a tridiagonal linear system
%
% x = THOMAS(A,d) solves a tridiagonal linear system using the very efficient
% Thomas Algorith. The vector x i