代码搜索:Bayes
找到约 1,385 项符合「Bayes」的源代码
代码结果 1,385
www.eeworm.com/read/148175/12487257
¦bayes
www.eeworm.com/read/290535/8478304
cpp bayes.cpp
#include
#include
#include
void mt(float *a,float *b,int row,int column)//矩阵求转置函数
{
int i,j;//a是转置前矩阵 b是转置后的矩阵 row为矩阵的行数 column是矩阵的列数
float temp;
for(i=
www.eeworm.com/read/188012/8579846
fig bayes.fig
www.eeworm.com/read/388485/8606550
m bayes.m
%贝叶斯判决
%s(t)
clc
clear all;
s=[(0:50)/50,(100-(51:150))/50,((151:199)-200)/50];
n=1:200;
subplot(221);
plot(n,s)
for m=1:200
%n(t)
n1=7.*randn(1,200);
subplot(222);
plot(n,n1);
%
www.eeworm.com/read/184920/9065836
m bayes.m
function rcount=Bayes(M1,E1,D1,M2,E2,D2)
C=log(det(E1))+det(M1'*E1^(-1)*M1)-log(det(E2))-det(M2'*E2^(-1)*M2);
rcount=0;
for i=1:50
A=D1(i,:)*(E1^(-1)-E2^(-1))*D1(i,:)';
B=(E1^(-1)*M1-E2^(
www.eeworm.com/read/179898/9331860
cc bayes.cc
/*--------------------------------------------------------------------------
@COPYRIGHT :
Copyright 1997, John Sled
McConnell Brain Imaging Centre,
Montreal
www.eeworm.com/read/179898/9331861
h bayes.h
/*--------------------------------------------------------------------------
@COPYRIGHT :
Copyright 1997, Vasken Kollokian,
McConnell Brain Imaging Centre,
www.eeworm.com/read/170384/9808576
fig bayes.fig
www.eeworm.com/read/170384/9808582
m bayes.m
% Bayes分类器设计
close all
clear all
echo off
x_serie=[-4:0.01:5];
% 待测细胞
x_value=[-3.9847 -3.5549 -1.2401 -0.9780 -0.7932 -2.8531...
-2.7605 -3.7287 -3.5414 -2.2692 -