代码搜索:operators
找到约 8,993 项符合「operators」的源代码
代码结果 8,993
www.eeworm.com/read/144514/12786817
m vector_matlab.m
%Matlab向量、矩阵操作
%1 construction of vector and matrix
a=1:5
A=[a;a.^2;a.^3]
save myMatrix -ASCII A
B=load('myMatrix')
C=zeros(4)
D=eye(4)
E=randn(4)
F=diag(a(1:4))
%2 operators of vector
www.eeworm.com/read/140891/13054307
java mathops.java
//: c03:MathOps.java
// Demonstrates the mathematical operators.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.b
www.eeworm.com/read/140891/13054324
java bitmanipulation.java
//: c03:BitManipulation.java
// Using the bitwise operators.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruce
www.eeworm.com/read/140891/13054332
java bool.java
//: c03:Bool.java
// Relational and logical operators.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeckel.
www.eeworm.com/read/241973/13107101
mht chapter 7.mht
From:
Subject: Operators - C# Nuts and Bolt - Beta2
Date: Wed, 29 Aug 2007 13:28:55 +0800
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/h
www.eeworm.com/read/138758/13216547
java mathops.java
//: c03:MathOps.java
// Demonstrates the mathematical operators.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.b
www.eeworm.com/read/138758/13216555
java bitmanipulation.java
//: c03:BitManipulation.java
// Using the bitwise operators.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruce
www.eeworm.com/read/138758/13216559
java bool.java
//: c03:Bool.java
// Relational and logical operators.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeckel.
www.eeworm.com/read/320605/13421902
java mathops.java
//: c03:MathOps.java
// Demonstrates the mathematical operators.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.b