代码搜索:OPERATION
找到约 10,000 项符合「OPERATION」的源代码
代码结果 10,000
www.eeworm.com/read/440002/7696046
c msp430xg46x_adc12_02.c
//******************************************************************************
// MSP430xG461x Demo - ADC12, Using the Internal Reference
//
// This example shows how to use the internal refe
www.eeworm.com/read/439850/7700706
m chap5_1.m
%Generic Algorithm for function f(x1,x2) optimum
clear all;
close all;
%Parameters
Size=80;
G=100;
CodeL=10;
umax=2.048;
umin=-2.048;
E=round(rand(Size,2*CodeL)); %Initial C
www.eeworm.com/read/439680/7703118
m chap5_1.m
%Generic Algorithm for function f(x1,x2) optimum
clear all;
close all;
%Parameters
Size=80;
G=100;
CodeL=10;
umax=2.048;
umin=-2.048;
E=round(rand(Size,2*CodeL)); %Initial C
www.eeworm.com/read/438605/7729245
m chap5_1.m
%Generic Algorithm for function f(x1,x2) optimum
clear all;
close all;
%Parameters
Size=80;
G=100;
CodeL=10;
umax=2.048;
umin=-2.048;
E=round(rand(Size,2*CodeL)); %Initial C
www.eeworm.com/read/438598/7729494
m chap5_1.m
%Generic Algorithm for function f(x1,x2) optimum
clear all;
close all;
%Parameters
Size=80;
G=100;
CodeL=10;
umax=2.048;
umin=-2.048;
E=round(rand(Size,2*CodeL)); %Initial C
www.eeworm.com/read/434781/7801767
java queue27.java
// holding/Queue27.java
// TIJ4 Chapter Holding, Exercise 27, page 424
/* Write a class called Command that contains a String and has a method operation()
* that displays the String. Write a second
www.eeworm.com/read/289562/7805775
h ipp.h
#ifndef _IPP_H
#define _IPP_H
/*
* Defines parts of the IPP protocol between the scheduler
* and the printer. Based on RFC2911 and RFC2910.
*/
/*
* Status code classes.
*/
#define STATCLASS_OK
www.eeworm.com/read/199676/7838249
htm chap18.htm
Intro to Algorithms: CHAPTER 18: AMORTIZED ANALYSIS
www.eeworm.com/read/299153/7882791
java subb.java
package com.javapatterns.doubledispatch.mixed;
public class SubB extends Super
{
public void operation(SubB b)
{
System.out.println("This is SubB.operation(SubB);");
}
www.eeworm.com/read/299153/7882796
java suba.java
package com.javapatterns.doubledispatch.mixed;
public class SubA extends Super
{
public void operation(SubA a)
{
System.out.println("This is SubA.operation(SubA);");
}