代码搜索:operators
找到约 8,993 项符合「operators」的源代码
代码结果 8,993
www.eeworm.com/read/294203/8247010
m q1.m
function q = q1
% q1 is one of the three quaternion operators.
% q1 is usually denoted by i, but this symbol is used in Matlab to represent
% the complex operator (also represented by j).
% Copyright
www.eeworm.com/read/292511/8350156
java allops.java
//:c3:Allops.java
//Tests all the operators on all the primitive data types to show which ones are accepted by //the java compilier
class Allops
{
//To accept the results of a boolean test:
voi
www.eeworm.com/read/392244/8356064
java longvalues.java
// operators/LongValues.java
// TIJ4 Chapter Operaters, Exercise 8, page 109
// Show that hex and octal notations work with long values.
// Use Long.toBinaryString to display the results.
impor
www.eeworm.com/read/392244/8356069
java charbinarytest.java
// operators/CharBinaryTest.java
// TIJ4 Chapter Operators, Exercise 13, page 116
/* Write a method that displays char values in binary form. Demonstrate it
* using several different characters.
www.eeworm.com/read/370596/9593185
java longvalues.java
// operators/LongValues.java
// TIJ4 Chapter Operaters, Exercise 8, page 109
// Show that hex and octal notations work with long values.
// Use Long.toBinaryString to display the results.
impor
www.eeworm.com/read/370596/9593192
java charbinarytest.java
// operators/CharBinaryTest.java
// TIJ4 Chapter Operators, Exercise 13, page 116
/* Write a method that displays char values in binary form. Demonstrate it
* using several different characters.
www.eeworm.com/read/172973/9681280
makefile
#
# Makefile for Simple Genetic Algorithm C code
#
#####################################
# Define implicit compilation rules #
#####################################
# uncomment following lines
www.eeworm.com/read/172973/9681292
errs
cc -O -c main.c
cc -O -c app.c
cc -O -c generate.c
cc -O -c initial.c
cc -O -c memory.c
cc -O -c operators.c
cc -O -c random.c
cc -O -c report.c
cc -O -c rselect.c
cc -O -c statisti
www.eeworm.com/read/171351/9760564
makefile
#
# Makefile for MGA-C
#
CC=gcc
#CFLAGS= -O -w -p -lm -g
CFLAGS= -lm -O
mga: main.o generate.o initial.o report.o operators.o objfunc.o functions.o \
stats.o supports.o utility.o random.o
$(CC) $(
www.eeworm.com/read/414988/11087866
java longvalues.java
// operators/LongValues.java
// TIJ4 Chapter Operaters, Exercise 8, page 109
// Show that hex and octal notations work with long values.
// Use Long.toBinaryString to display the results.
impor