代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/152112/12139133
m romber.m
function [R,quad,err,h]=romber(f,a,b,n,tol)
%Input - f is the integrand input as a string 'f'
% - a and b are upper and lower limits of integration
% - n is the maximum number of rows in
www.eeworm.com/read/152112/12139156
m uptrbk.m
function X = uptrbk(A,B)
%Input - A is an N x N nonsingular matrix
% - B is an N x 1 matrix
%Output - X is an N x 1 matrix containing the solution to AX=B.
% NUMERICAL METHODS: Matlab Program
www.eeworm.com/read/152112/12139162
m rk4.m
function R=rk4(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
www.eeworm.com/read/152112/12139165
m lufact.m
function X = lufact(A,B)
%Input - A is an N x N matrix
% - B is an N x 1 matrix
%Output - X is an N x 1 matrix containing the solution to AX = B.
% NUMERICAL METHODS: Matlab Programs
% (c) 200
www.eeworm.com/read/130097/14208573
h parse.h
/*
Copyright (c) 2000-2002, Jelle Kok, University of Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the fo
www.eeworm.com/read/228040/14402450
h parse.h
/*
Copyright (c) 2000-2003, Jelle Kok, University of Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the fo
www.eeworm.com/read/225546/14535557
java jsonstringer.java
package org.json;
/*
Copyright (c) 2006 JSON.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
www.eeworm.com/read/225347/14544550
h parse.h
/*
Copyright (c) 2000-2003, Jelle Kok, University of Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the fo
www.eeworm.com/read/222288/14697943
m euler.m
function E=euler(f,a,b,ya,M)
%Input - y'=f is the function
% - a and b are the left and right endpoints
% - ya is the initial condition y(a)
% - M is the number o
www.eeworm.com/read/222288/14697948
m taylor.m
function T4=taylor(df,a,b,ya,M)
%Input - df=[y' y'' y''' y''''] where y'=f(t,y)
% - a and b are the left and right endpoints
% - ya is the initial condition y(a)
%