-
The Java Language Specification is the definitive technical reference for the Java programming language. It provides complete, accurate, and detailed coverage of the entire language and its syntax. If you want to know the precise meaning of Java s constructs, this is the source for you.
標(biāo)簽:
Java
Specification
programming
definitive
上傳時(shí)間:
2017-04-10
上傳用戶(hù):a673761058
-
For a programming language, Fortran has been around a long time. It was one
of the first widely used 鈥渉igh-level鈥?languages, as well as the first
programming language to be standardized. It is still the premier language for
scientific and engineering computing applications.
The purpose of this handbook is to describe the latest version of this language,
Fortran 90. This chapter gives some history of the development and
standardization of Fortran and describes the notation used to specify the
syntax of Fortran 90.
標(biāo)簽:
programming
language
Fortran
around
上傳時(shí)間:
2014-01-04
上傳用戶(hù):6546544
-
Specification File
adjacencyListGragh
class GeneralGraph:
use adjacency list to implement the graph which data structure is vector
Construct methods:
* public GeneralGraph():
contain an empty vector store the vertex and a boolean determines whether graph is directed or not, defaulted is undirected
標(biāo)簽:
adjacencyListGragh
Specification
GeneralGraph
adjacency
上傳時(shí)間:
2013-12-13
上傳用戶(hù):lyy1234
-
As a programming language, C is rather like Pascal or Fortran.. Values are stored in variables.
Programs are structured by defining and calling functions. Program flow is controlled using loops, if
statements and function calls. Input and output can be directed to the terminal or to files. Related data
can be stored together in arrays or structures.
標(biāo)簽:
programming
variables
language
Fortran
上傳時(shí)間:
2017-05-18
上傳用戶(hù):hongmo
-
NN Functions
a program in Lisp to demonstrate working of an artificial neuron. (Enter an input vector X and weight vector W. Calculate weighted sum XW. Transform this using signal or activation functions like logistic, threshold, hyperbolic-tangent, linear, exponential, sigmoid or some other functions (syntax provided) and display the output).
標(biāo)簽:
demonstrate
artificial
Functions
program
上傳時(shí)間:
2013-12-30
上傳用戶(hù):hfmm633
-
This routine calls the glpk library to solve a LP/MIP problem. A typical
LP problem has following structure:
[min|max] C x
s.t.
Ax ["="|"<="|">="] b
{x <= UB}
{x >= LB}
The calling syntax is:
[XMIN,FMIN,STATUS,EXTRA]=glpkmex(SENSE,C,A,B,CTYPE,LB,UB,... VARTYPE,PARAM,LPSOLVER,SAVE)
標(biāo)簽:
problem
following
routine
library
上傳時(shí)間:
2014-12-01
上傳用戶(hù):changeboy
-
JXMLEditor is a XML editor developed in Java which is based on the Xerces Java parser. The goal of this editor is to offer some features (tree view, drag & drop, syntax colorizing) to create XML documents easily. Also available as Eclipse Plugin.
標(biāo)簽:
Java
JXMLEditor
developed
editor
上傳時(shí)間:
2013-11-30
上傳用戶(hù):水口鴻勝電器
-
Web based binary image upload for ARM LPC2366 controller. Toolchain is Keil Realview MDK ARM ver 3.2 with RL ARM Real time Lib 3.40. RAR file contains webiap2.cgi file and HTTP_cgi file. HTTP_cgi file is modified in cgi_process_data to upload binary image of application using HTTP protcol. File upload is using HTML syntax method=\"post\" ENCTYPE=\"multipart/form-data\
標(biāo)簽:
web_based
上傳時(shí)間:
2013-12-17
上傳用戶(hù):ukuk
-
Rotation tool, totates a single image contained in HANDLE.HANDLE can be a handle to figure, axes, or image object.
This GUI is a pure imitation of ROTATEGUI from Birju Patel and uses some code from that function. However, it has extended functionalities and was re-writen using R13 syntax. Which means that it can be compiled with the V3.x compiler.
標(biāo)簽:
HANDLE
contained
Rotation
totates
上傳時(shí)間:
2017-07-28
上傳用戶(hù):han_zh
-
Matlab 畫(huà)三維立體圖形
The aim of geom3d library is to handle and visualize 3D geometric primitives
such as points, lines, planes, polyhedra... It provides low-level functions
for manipulating 3D geometric primitives, making easier the development of more
complex geometric algorithms.
Some features of the library are:
- creation of various shapes (3D points, 3D lines, planes, polyhedra...)
through an intuitive syntax.
Ex: createPlane(p1, p2, p3) to create a plane through 3 points.
- derivation of new shapes: intersection between 2 planes, intersection between
a plane and a line, between a sphere and a line...
- functions for 3D polygons and polyhedra. Polyhedra use classical vertex-faces
arrays (face array contain indices of vertices), and support faces with any
number of vertices. Some basic models are provided (createOctaedron,
createCubeoctaedron...), as well as some computation (like faceNormal or
centroid)
- manipulation of planar transformation. Ex.:
ROT = createRotationOx(THETA);
P2 = transformPoint3d(P1, ROT);
- direct drawing of shapes with specialized functions. Clipping is performed
automatically for infinite shapes such as lines or rays. Ex:
drawPoint3d([50 50 25; 20 70 10], 'ro'); % draw some points
drawLine3d([X0 Y0 Z0 DX DY DZ]); % clip and draw straight line
Some functions require the geom2d package.
Additional help is provided in geom3d/Contents.m file, as well as summary files
like 'points3d.m' or 'lines3d.m'.
標(biāo)簽:
Matlab 畫(huà)三維立體圖形
上傳時(shí)間:
2015-11-02
上傳用戶(hù):A1321