代码搜索:Prentice

找到约 973 项符合「Prentice」的源代码

代码结果 973
www.eeworm.com/read/279234/10452823

isd titleauthor.isd

﨏 How to Program
www.eeworm.com/read/434325/7874107

m a11_5.m

echo on; clc; %--------------------------------------------------------------------------- %A11_5 MATLAB script file for implementing Algorithm 11.5 % % NUMERICAL METHODS: MATLAB Programs, (c) J
www.eeworm.com/read/434325/7874130

m qr2.m

function D = qr2(A,epsilon,show) %--------------------------------------------------------------------------- %QR2 Householder reduction to tridiagonal form % followed by the QR method with
www.eeworm.com/read/434325/7874155

m a11algos.m

%--------------------------------------------------------------------------- %A11ALGOS % % NUMERICAL METHODS: MATLAB Programs, (c) John H. Mathews 1995 % To accompany the text: % NUMERICAL METHOD
www.eeworm.com/read/434325/7874160

m house.m

function A = house(A,show) %--------------------------------------------------------------------------- %HOUSE Householder`s method is used to reduce % a symmetric matrix to tridigonal f
www.eeworm.com/read/434325/7874300

m traprl.m

function s = traprl(f,a,b,m) %--------------------------------------------------------------------------- %TRAPRL Quadrature using the trapezoidal rule. % Sample call % s = traprl(f,a,b,m) %