代码搜索:4
找到约 10,000 项符合「4」的源代码
代码结果 10,000
www.eeworm.com/read/149368/12385193
m example4_4.m
%写一个函数,它计算目标函数值、目标函数的梯度和稀疏三阶海色矩阵。
function [f,g,H] = brownfgH(x)
% 计算目标函数。
n=length(x); y=zeros(n,1);
i=1:(n-1);
y(i)=(x(i).^2).^(x(i+1).^2+1)+(x(i+1).^2).^(x(i).^2+1);
f=sum(y);
% 计算函数梯度。
www.eeworm.com/read/337168/12386674
cpp shiyan4_4.cpp
#include
#include
#define NULL 0
typedef struct BSNode
{
int key;
struct BSNode *LChild;
struct BSNode *RChild;
}Tree;
int Search(Tree *t,Tree *c,int key,Tree * *p)
{
www.eeworm.com/read/148489/12463557
m chap4_4.m
%Adaptive PID control based on RBF Identification
clear all;
close all;
xite=0.25;
alfa=0.05;
belte=0.01;
x=[0,0,0]';
ci=30*ones(3,6);
bi=40*ones(6,1);
w=10*ones(6,1);
h=[0,0,0,0,0,0]
www.eeworm.com/read/234693/14100155
c 4x4.c
#include
sbit P1_0=P1^0 ;
sbit P3_4=P3^4 ;
sbit P3_5=P3^5 ;
sbit P3_6=P3^6 ;
sbit P3_7=P3^7 ;
unsigned char code table[]={0x3f,0x06,0x5b,0x4f,
0x66,
www.eeworm.com/read/132059/14111880
gif itwork4_4.gif
www.eeworm.com/read/132039/14113040
tim 4ex-4.tim
#
# 4ex-4.tim
#$Header: /syn/cvs/rcs/mappers/xilinx/lib/4ex-4.tim,v 1.2 1999/07/29 23:40:49 naresh Exp $
#
@EN#0s00_OVD_HRDC
0#CRNVlbC_8D3R..C
#0sbNllRVN8b_CfDRVblN_D8C
0#CblNsRlVEN8b_CdDR3#U
www.eeworm.com/read/132039/14113053
tim 4e-4.tim
#
# 4e-4.tim
#$Header: /syn/cvs/rcs/mappers/xilinx/lib/4e-4.tim,v 1.2 1999/07/29 23:40:49 naresh Exp $
#
@EN#0s00_OVD_HRDC
0#CRNVlbC_8D3R.(C
#0sbNllRVN8b_CfDRVblN_D8C
0#CblNsRlVEN8b_CcDR3#(
CN
www.eeworm.com/read/132039/14113227
tim 4k-4.tim
#
# 4k-4.tim
#$Header: /syn/cvs/rcs/mappers/xilinx/lib/4k-4.tim,v 1.1.1.1 1999/05/22 02:18:01 george Exp $
#
@EN#0s00_OVD_HRDC
0#CRNVlbC_8D3RcjC
#0sbNllRVN8b_CfDRVblN_D8C
0#CblNsRlVEN8b_CnDR3#j
www.eeworm.com/read/234256/14117734
cpp program_4_4.cpp
// Program 4.4: Compute a simple arithmetic expression
#include
using namespace std;
int main() {
// prompt and extract desired operation
cout