代码搜索:tridiagonal
找到约 218 项符合「tridiagonal」的源代码
代码结果 218
www.eeworm.com/read/316412/13523362
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),
% a(
www.eeworm.com/read/316412/13523366
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)).
%
% S
www.eeworm.com/read/309287/13675263
h trfd.h
// -*-c++-*-
// LAPACK++ (V. 1.1)
// (C) 1992-1996 All Rights Reserved.
#ifndef _LA_TRIDIAG_FACT_DOUBLE_H_
#define _LA_TRIDIAG_FACT_DOUBLE_H_
/** @file
@brief LU factorization of a tri
www.eeworm.com/read/480713/6660092
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/480713/6660096
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/261074/11667476
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/157453/11704355
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);
www.eeworm.com/read/259580/11780306
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/259580/11781449
h tridiagonalmatrix.h
// tridiagonal matrix
#ifndef tridiagonal_
#define tridiagonal_
#include "myExceptions.h"
using namespace std;
template
class tridiagonalMatrix
{
public:
tridiago
www.eeworm.com/read/155568/11863023
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),
%