代码搜索:Numerical

找到约 2,441 项符合「Numerical」的源代码

代码结果 2,441
www.eeworm.com/read/278154/10564158

c elmhes.c

#include #define SWAP(g,h) {y=(g);(g)=(h);(h)=y;} void elmhes(float **a, int n) { int m,j,i; float y,x; for (m=2;m
www.eeworm.com/read/278154/10564483

c tred2.c

#include void tred2(float **a, int n, float d[], float e[]) { int l,k,j,i; float scale,hh,h,g,f; for (i=n;i>=2;i--) { l=i-1; h=scale=0.0; if (l > 1) { for (k=1;k
www.eeworm.com/read/278154/10564671

c tred2.c

#include void tred2(float **a, int n, float d[], float e[]) { int l,k,j,i; float scale,hh,h,g,f; for (i=n;i>=2;i--) { l=i-1; h=scale=0.0; if (l > 1) { for (k=1;k
www.eeworm.com/read/434325/7873994

m readme4.m

NUMERICAL METHODS: MATLAB Programs (c) 1995 by John H. Mathews To Accompany NUMERICAL METHODS for Mathema
www.eeworm.com/read/434325/7874059

m tch.m

function p = tch(C,n,x,a,b) %--------------------------------------------------------------------------- %TCH Evaluation of the Chebyshev polynomial. % Sample calls % p = tch(C,n,x) % p = t
www.eeworm.com/read/434325/7874317

m rctrap.m

function T = rctrap(f,a,b,n) %--------------------------------------------------------------------------- %RCTRAP Quadrature using the recursive trapezoidal rule. % Sample call % T = rctrap('f
www.eeworm.com/read/434325/7874330

m grpoly.m

function grpoly(a,b,m,n) %--------------------------------------------------------------------------- %GRPOLY To graph a polynomial. % Sample call % grpoly(a,b,m,n) % Inputs % a left e
www.eeworm.com/read/434325/7874361

m readme5.m

NUMERICAL METHODS: MATLAB Programs (c) 1995 by John H. Mathews To Accompany NUMERICAL METHODS for Mathema
www.eeworm.com/read/434325/7874380

m tp.m

function z = tp(A,B,t,m) %--------------------------------------------------------------------------- %TP Evaluates the trigonometric polynomial created with tpcoeff. % Sample call % z = tp(A,B
www.eeworm.com/read/434325/7874418

m tpcoeff.m

function [A,B] = tpcoeff(X,Y,m) %--------------------------------------------------------------------------- %TPCOEFF Construct a trigonometric polynomial through the points. % Sample call % [