代码搜索:Annotation
找到约 6,069 项符合「Annotation」的源代码
代码结果 6,069
www.eeworm.com/read/454202/7396557
java chap0304.java
/*
* $Id: Chap0304.java,v 1.1 2002/03/06 15:45:34 blowagie Exp $
* $Name: $
*
* This code is free software. It may only be copied or modified
* if you include the following copyright notice:
*
www.eeworm.com/read/453291/7422852
cpp cityscape.cpp
#include
#include "annotation.h"
#include "cityblock.h"
#include "cityscape.h"
#include "cityview.h"
Cityscape::Cityscape()
{
scene = new QGraphicsScene(-22.25, -22.25, 1980, 1980);
www.eeworm.com/read/450608/7480281
m getlablist.m
%GETLABLIST Get label list of dataset
%
% LABLIST = GETLABLIST(A,STRING)
%
% Returns the label list of a dataset A.
% If STRING equals 'string' the label list is converted to characters,
% which may
www.eeworm.com/read/442927/7641760
m dcprdataplot3.m
function dcprDataPlot3(DS, plotTitle, displayAnnotation)
% dcprDataPlot: Plot of 3D data for data clustering or pattern recognition
% Usage: dcprDataPlot3(DS, plotTitle, inputName, pointLabel)
% D
www.eeworm.com/read/437043/7756009
m manualdetect.m
function [mp,ibi] = ManualDetect(x);
%ManualDetect: Manual Peak Detector
%
% [mp,ibi] = ManualDetect(x)
%
% x Input signal
%
% mp Manual Detected Peaks, samples
% ibi
www.eeworm.com/read/434208/7882469
html xyareachartdemo1.html
XYAreaChartDemo1
An area chart created using an XYDataset. There is a "test"
annotation on this chart.
www.eeworm.com/read/434208/7882684
html markerdemo1.html
MarkerDemo1
A demo showing the addition of domain and range markers to a chart. This chart
also has an annotation highlighting the "best bid".
www.eeworm.com/read/196856/8054040
m manualdetect.m
function [mp,ibi] = ManualDetect(x);
%ManualDetect: Manual Peak Detector
%
% [mp,ibi] = ManualDetect(x)
%
% x Input signal
%
% mp Manual Detected Peaks, samples
% ibi
www.eeworm.com/read/196467/8090965
cc link.cc
//========================================================================
//
// Link.cc
//
// Copyright 1996-2003 Glyph & Cog, LLC
//
//===============================================================
www.eeworm.com/read/396569/8100239
java area.java.zip.java
import java.util.Vector;
interface Shape{
public abstract double area();
}
class Circle implements Shape{
int r;
Circle(int r){
this.r=r;
}
Circle(){
this.r=0;
}
public double