搜索结果
找到约 33 项符合
Sign 的查询结果
按分类筛选
数值算法/人工智能 计算ARMA(p
计算ARMA(p,q)模型的功率谱密度。
形参说明:
b——双精度实型一维数组,长度为(q+1),存放ARMA(p,q)模型的滑动平均系数。
a——双精度实型一维数组,长度为(p+1),存放ARMA(p,q)模型的自回归系数。
q——整型变量,ARMA(p,q)模型的滑动平均阶数。
p——整型变量,ARMA(p,q)模型的自回归阶数。
sigma2——双精度实型变量, ...
人工智能/神经网络 本文件为用C语言实现的可实现广义异或问题的bp神经网络算法。该问题是对标准异或问题的推广。在标准异或问题中
本文件为用C语言实现的可实现广义异或问题的bp神经网络算法。该问题是对标准异或问题的推广。在标准异或问题中,输入X1和X2取离散量-1或+1,在广义异或问题中,输入(X1,X2)可以在区间[-1,+1] X [-1, +1]内任意取值,而输出为Y=sign(x1,x2),其中sign()为符号函数,在区间[-1,+1] X [-1, +1]内随机产生500个训练样本.本 ...
matlab例程 基于Volterra滤波器混沌时间序列多步预测 作者:陆振波
基于Volterra滤波器混沌时间序列多步预测
作者:陆振波,海军工程大学
欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页
电子邮件:luzhenbo@sina.com
个人主页:luzhenbo.88uu.com.cn
参考文献:
1、张家树.混沌时间序列的Volterra自适应预测.物理学报.2000.03
2、Scott C.Douglas, Teresa H.-Y. Meng, No ...
其他   该工作表中最关键的是C8单元格中的内容
&nbsp 该工作表中最关键的是C8单元格中的内容,其内容是计算股票收益的公式:
&nbsp &nbsp =F7*(1-B3-B4)-F3*(1+B3+B4)-F5+F6-(SIGN(F3)+SIGN(F7))*(B5+B6+B7)
&nbsp &nbsp 其中B3和B4分别是印花税和手续费,F7*(1-B3-B4)为卖出股票的收益(已扣除印花税和手续费);F3*(1+B3+B4)为买入股票的支出(含 ...
加密解密 SharpPrivacy - OpenPGP for C#: SharpPrivacy is an OpenPGP implementation in C#. It can be used to
SharpPrivacy - OpenPGP for C#:
SharpPrivacy is an OpenPGP implementation in C#. It can be used to encrypt and sign data, created OpenPGP compatible keys, and a lot more. This article explains how to use the library in your own .NET application or webpage to encrypt, sign, decrypt or verify OpenPGP ...
Delphi控件源码 文本计算器是一款为经常需要使用计算器的工程项目人士而设计的软件
文本计算器是一款为经常需要使用计算器的工程项目人士而设计的软件,该软件使用简单、方便。
当需要计算数据时,在窗口中输入整个表达式(表达式可以是加+、减-、乘*、除/、平方^、括号(),以及数学函数组合),按回车后可自动计算出结果,计算方法一目了然,便于查找计算中可能出现的错误。
支持的数学函数:cos(), sin(), ...
matlab例程 %BIQPBOX Bisection reflective line search for sqpbox % [nx,nsig,alpha] = BIQPBOX(s,c,strg,x,y,sigma
%BIQPBOX Bisection reflective line search for sqpbox
% [nx,nsig,alpha] = BIQPBOX(s,c,strg,x,y,sigma,l,u,...
% oval,po,normg,DS,mtxmpy,data,H)
% returns the new feasible point nx, the corresponding sign vector nsig,
% and the step size of the unreflected step, alpha.
% Copyright (c) 1990-98 by ...
matlab例程 %DEFINEV Scaling vector and derivative % % [v,dv]= DEFINEV(g,x,l,u) returns v, distances to the %
%DEFINEV Scaling vector and derivative
%
% [v,dv]= DEFINEV(g,x,l,u) returns v, distances to the
% bounds corresponding to the sign of the gradient g, where
% l is the vector of lower bounds, u is the vector of upper
% bounds. Vector dv is 0-1 sign vector (See ?? for more detail.)
%
% Copyr ...
单片机开发 //通过18B20检测的数字温度可在电脑上显示当前温度值 #include <reg52.h> #define uchar unsigned char #define uint un
//通过18B20检测的数字温度可在电脑上显示当前温度值
#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit DS=P2^2 //define interface
uint temp // variable of temperature
uchar flag1 // sign of the result positive or negative
sbit dula=P2^6
sbit wela=P2^7 ...
VHDL/FPGA/Verilog 本程序是11位带符号位的乘法器
本程序是11位带符号位的乘法器,其中最高位为符号位(sign),中间7位是指数部分(Exponent),最后3位是尾数(Matissa)。表示数据的范围是-2^-63-----+2^64.该工程文件有完整的程序,以及波形,验证正确。