代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/152112/12139094
m lspoly.m
function C = lspoly(X,Y,M)
%Input - X is the 1xn abscissa vector
% - Y is the 1xn ordinate vector
% - M is the degree of the least-squares polynomial
% Output - C is the coefficient l
www.eeworm.com/read/152112/12139149
m diffnew.m
function [A,df]=diffnew(X,Y)
%Input - X is the 1xn abscissa vector
% - Y is the 1xn ordinate vector
%Output - A is the 1xn vector containing the coefficients of the Nth
% degree Ne
www.eeworm.com/read/152112/12139169
m seidel.m
function [P,iter]= seidel(G,P,delta, max1)
%Input - G is the nonlinear system saved in the M-file G.m
% - P is the initial guess at the solution
% - delta is the error bound
%
www.eeworm.com/read/152112/12139170
m jacobi1.m
function [V,D]=jacobi1(A,epsilon)
%Input - A is an nxn matrix
% - epsilon the is tolerance
%Output - V is the nxn matrix of eigenvectors
% - D is the diagonal nxn matrix of eigenvalues
%
www.eeworm.com/read/340194/12174694
h dom_xmlimpl.h
/*
* This file is part of the DOM implementation for KDE.
*
* Copyright (C) 2000 Peter Kelly (pmk@post.com)
*
* This library is free software; you can redistribute it and/or
* modify it un
www.eeworm.com/read/340194/12174713
h dom_textimpl.h
/*
* This file is part of the DOM implementation for KDE.
*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2003 Apple
www.eeworm.com/read/253866/12181269
cpp list1201.cpp
//Listing 12.1 Simple inheritance
#include
using namespace std;
enum BREED { GOLDEN, CAIRN, DANDIE, SHETLAND, DOBERMAN, LAB };
class Mammal
{
public:
// constructors
M
www.eeworm.com/read/151556/12201307
m euler.m
function E=euler(f,a,b,ya,M)
%Input - f is the function entered as a string 'f'
% - a and b are the left and right endpoints
% - ya is the initial condition y(a)
% - M is the n
www.eeworm.com/read/151556/12201322
m taylor.m
function T4=taylor(df,a,b,ya,M)
%Input - df=[y' y'' y''' y'''']entered as a string 'df'
% where y'=f(t,y)
% - a and b are the left and right endpoints
% - ya is the initial c
www.eeworm.com/read/151556/12201325
m gauss.m
function quad=gauss(f,a,b,A,W)
%Input - f is the integrand input as a string 'f'
% - a and b upper and lower limits of integration
% - A is the 1 x N vector of abscissas from Table 7.