代码搜索:tridiagonal
找到约 218 项符合「tridiagonal」的源代码
代码结果 218
www.eeworm.com/read/464335/7165208
m tridisolve.m
function x = tridisolve(a,b,c,d)
% TRIDISOLVE Solve tridiagonal system of equations.
% x = TRIDISOLVE(a,b,c,d) solves the system of linear equations
% b(1)*x(1) + c(1)*x(2) = d(1),
%
www.eeworm.com/read/464335/7165212
m splinetx.m
function v = splinetx(x,y,u)
%SPLINETX Textbook spline function.
% v = splinetx(x,y,u) finds the piecewise cubic interpolatory
% spline S(x), with S(x(j)) = y(j), and returns v(k) = S(u(k)).
%
www.eeworm.com/read/459616/7270586
cpp tridiag.cpp
// test tridiagonal matrix class
#include
#include "tridiag.h"
void main(void)
{
TridiagonalMatrix X(20);
X.Store(22,1,1).Store(44,5,5).Store(0,8,5).Store(55,7,8);
cout
www.eeworm.com/read/451385/7466241
m tridisolve.m
function x = tridisolve(a,b,c,d)
% TRIDISOLVE Solve tridiagonal system of equations.
% x = TRIDISOLVE(a,b,c,d) solves the system of linear equations
% b(1)*x(1) + c(1)*x(2) = d(1),
%
www.eeworm.com/read/451385/7466245
m splinetx.m
function v = splinetx(x,y,u)
%SPLINETX Textbook spline function.
% v = splinetx(x,y,u) finds the piecewise cubic interpolatory
% spline S(x), with S(x(j)) = y(j), and returns v(k) = S(u(k)).
%
www.eeworm.com/read/146126/12668501
cpp tridiagonalmatrix.cpp
// test tridiagonal matrix class
#include
#include "tridiagonalMatrix.h"
using namespace std;
int main(void)
{
tridiagonalMatrix x(20);
x.set(1,1,22);
x.set(5,5,44
www.eeworm.com/read/146126/12668980
h tridiagonalmatrix.h
// tridiagonal matrix
#ifndef tridiagonal_
#define tridiagonal_
#include "myExceptions.h"
using namespace std;
template
class tridiagonalMatrix
{
public:
tridiago
www.eeworm.com/read/142434/12945793
m tri_ge.m
function x = tri_ge(a,b)
% Function to solve b = a*x by Gaussian elimination where
% the matrix a is a packed tridiagonal matrix
% Inputs
% a Packed tridiagonal matrix, N by N unpacked
% b
www.eeworm.com/read/141692/12990926
m tridisolve.m
function x = tridisolve(a,b,c,d)
% TRIDISOLVE Solve tridiagonal system of equations.
% x = TRIDISOLVE(a,b,c,d) solves the system of linear equations
% b(1)*x(1) + c(1)*x(2) = d(1),
%
www.eeworm.com/read/141692/12990938
m splinetx.m
function v = splinetx(x,y,u)
%SPLINETX Textbook spline function.
% v = splinetx(x,y,u) finds the piecewise cubic interpolatory
% spline S(x), with S(x(j)) = y(j), and returns v(k) = S(u(k)).
%