代码搜索:Beta值
找到约 10,000 项符合「Beta值」的源代码
代码结果 10,000
www.eeworm.com/read/210586/15195633
pdf 基于emd和奇异值分解技术的滚动轴承故障诊断方法.pdf
www.eeworm.com/read/207693/15264697
pdf 一种基于灰值形态学的汽车牌照提取方法.pdf
www.eeworm.com/read/7947/139823
pdf 能量变换器小值振荡与稳定性的基础研究.pdf
www.eeworm.com/read/13871/284316
m logistk.m
function [beta,post,lli] = logistK(x,y,w,beta)
% [beta,post,lli] = logistK(x,y,beta,w)
%
% k-class logistic regression with optional sample weights
%
% k = number of classes
% n = number of sam
www.eeworm.com/read/161189/10439922
m examp.m
clear;
rand('state',0);
randn('state',0);
%
% The code that generated the data.
%
%beta0 = 10;
%beta1 = 100;
%beta2 = 9.8;
%for t=1:40
%x(t,1)=t;
%sigma(t,1)=8;
%y(t,1)=beta0+beta1*t-(1/2*beta2)*t^2+
www.eeworm.com/read/289252/3991861
m sta6_3m.m
function yy=model(beta0,X)
a=beta0(1);
b=beta0(2);
yy=exp(a+b*log(X));