代码搜索结果
找到约 10,000 项符合
2 的代码
d2r2.txt
implementation
//PROGRAM D2R2
//Driver for routine RATINT
uses
unit2;
{$R *.DFM}
Function FUNC(x:real):real;
begin
FUNC:= X * Exp(-X)/(Sqr(X - 1)+1);
end;
procedure TForm1.Button1C
ps2test.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1, 0x0
Options 1,0,0 // Target '
e5_2_2.m
%Examp1e52 Sim
clear all
clc;
p(1:256,1)=1;
p1=ones(16,16);%初始化16.16的二值图像像素值(全白)
load E52net net;%加载训练后的BP网络
test=input('p1ease input s test image;','s');%提示输入测试样本图像文件名
x=imread(test,'bmp');%读入
angls2links2.m
function [xxt,yyt]=angls2links2(bq)
global l1 l2
l1=1;l2=1;
for j=1:size(bq,2)
[x1(j),y1(j)]=pol2cart(bq(1,j),l1);
[x2(j),y2(j)]=pol2cart(bq(2,j)+bq(1,j),l2);
xx1(j,:)=l
c12-2-2.cpp
#include
#include
using namespace std;
class Student
{public:
Student(int,string,float);
virtual void display();
protected:
int num;
string name;
float
c14-2-2.cpp
#include
using namespace std;
int main()
{void f1();
try
{f1();}
catch(double)
{cout
c7-2-2.cpp
#include
#include
using namespace std;
struct Person
{ string name;
int count;
};
int main()
{Person leader[3]={"Li",0,"Zhang",0,"Fun",0};
int i,j;
string leade
c10-2-2.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r,double i){real=r;imag=i;}
Complex operator + (Complex &c2);
void display(