代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/392361/8348351
m exm033_1.m
%exm033_1.m
%直接对域赋值法产生"单构架"。
green_house.name='一号房'; %构架域由(构架名).(域名)标识。
green_house.volume='2000立方米'; %
green_house.parameter.temperature=[31.2 30.4 31.6 28.7
www.eeworm.com/read/368261/9703653
m romberg.m
function s=Romberg(a,b,eps)
% Romberg求积法进行数值积分,其中a与b为积分区间
% eps为允许的误差值
if nargin==2
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/368108/9711582
m exm033_1.m
%exm033_1.m
%直接对域赋值法产生"单构架"。
green_house.name='一号房'; %构架域由(构架名).(域名)标识。
green_house.volume='2000立方米'; %
green_house.parameter.temperature=[31.2 30.4 31.6 28.7
www.eeworm.com/read/367113/9781381
cpp rootmontecarlogroupreal.cpp
//RootMonteCarloGroupReal.cpp MonteCarlo法求解非线性方程组一组实根
#include //输入输出流头文件
#include "NonLinearEquation.h" //非线性方程(组)求解头文件
using namespace std; //名字空间
void main(void)
{
size_t
www.eeworm.com/read/367113/9781385
cpp rootqr.cpp
//RootQR.cpp QR法求实系数代数方程全部根
#include //输入输出流头文件
#include "NonLinearEquation.h" //非线性方程(组)求解头文件
using namespace std; //名字空间
void main(void)
{
size_t i, jt = 60, n=6;
www.eeworm.com/read/367107/9782425
cpp le_tridiagonalequationgauss.cpp
//LE_TridiagonalEquationGauss.cpp 求解三对角线方程组的追赶法
#include //输入输出流头文件
#include "LinearEquation.h" //线性方程(组)求解头文件
void main()
{
int i;
double b[13] =
{
13.0, 12.
www.eeworm.com/read/269229/11104447
cpp xuanze4f.cpp
//选择排序法(函数模板、上浮)xuanze4f.cpp
#include
#include
#include
#include
#define M 10
template
void sortp(T d[],int size)
{int i,j,k,m;
for(i=0;i
www.eeworm.com/read/269229/11104566
cpp jinbiaosai.cpp
//锦标赛排序法JinBiaoSai.cpp
#include
#include
#include
#include
#include
class DataNode //胜者树结点的类定义
{public:
int data;//数据值
int index;//树中的结点号
www.eeworm.com/read/249868/12465457
m 15-3.m
I = imread('rice.tif');
BW = edge(I,'canny');
% 以自动阈值选择法对图像进行Canny算子检测
[BW,thresh] = edge(I,'canny');
% 返回当前Canny算子边缘检测的阈值
disp('Canny算子自动选择的阈值为:')
disp(thresh)
subplot(121),imshow(BW);
title(
www.eeworm.com/read/249696/12479774
txt [c函数之b].txt
函数名: bar
功 能: 画一个二维条形图
用 法: void far bar(int left, int top, int right, int bottom);
程序例:
#include
#include
#include
#include
int main(vo