代码搜索:贝叶斯算法
找到约 10,000 项符合「贝叶斯算法」的源代码
代码结果 10,000
www.eeworm.com/read/312402/13611785
m bb.m
%基于贝叶斯分类算法的图像阈值分割
clear
clc;
Im = imread('flower.tif');
subplot(131),imhist(Im),title('直方图')
subplot(132),imshow(Im)
title('原始图像')
[x,y]=size(Im); % 求出图象大小
b=double(Im);
www.eeworm.com/read/242533/13001736
c [算法] 遗传算法基本算法.c
www.eeworm.com/read/365342/9867558
doc 文 件 拷 贝.doc
www.eeworm.com/read/167710/9954963
doc 文 件 拷 贝.doc
www.eeworm.com/read/166450/10020131
c 龙贝格求积.c
#include "math.h"
#include "stdio.h"
double romb(a,b,eps,f)
double a,b,eps,(*f)();
{int m,n,i,k;
double y[10],h,ep,p,x,s,q;
h=b-a;
y[0]=h*((*f)(a)+(*f)(b))/2.0;
m=1; n=1; ep=
www.eeworm.com/read/348857/10863194
frm 贝齐尔曲线.frm
VERSION 5.00
Begin VB.Form Form2
BackColor = &H00FFFFFF&
BorderStyle = 4 'Fixed ToolWindow
Caption = "贝齐尔曲线的绘制"
ClientHeight = 7530
ClientLeft
www.eeworm.com/read/462792/7196264
doc 文 件 拷 贝.doc
www.eeworm.com/read/436204/7775256
cpp 龙贝格积分.cpp
//龙贝格积分,数值方法计算定积分
#include
#include
/* Numerical Integration (Romberg) */
template
T romberg(T (*f)(T), T a, T b, T eps = 1e-15)
{
std::vector R;
int k = -1;
www.eeworm.com/read/142633/12934569
doc 文 件 拷 贝.doc
www.eeworm.com/read/304000/13805063
c 贝塞尔曲线.c
#include"graph.h"
#include
#include"mathlab.h"
#define nline 200
#define NY 6
#define NL 102
int nl=10,place=0,dl=200;
double y[NL][NY],x[NL][NY];
double dy[NY],dx[NY];