代码搜索:Mapping
找到约 10,000 项符合「Mapping」的源代码
代码结果 10,000
www.eeworm.com/read/476870/6753015
cpp mapping.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
//---------------------------------------------------------------------------
USEFO
www.eeworm.com/read/476870/6753017
res mapping.res
www.eeworm.com/read/476870/6753018
exe mapping.exe
www.eeworm.com/read/134079/11298613
m mapping.m
function A = mapping(n)
% To create a Morton Scan order matrix
if n == 2
A = [1 2; 3 4];
else
B = mapping(n/2);
A = [B B+(n/2)^2; B+(n/2)^2*2 B+(n/2)^2*3];
end
www.eeworm.com/read/402294/11538668
h mapping.h
/*
* Copyright (C) 1996-2000 Michael R. Elkins
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Licens
www.eeworm.com/read/400577/11573230
m mapping.m
%MAPPING Mapping class constructor
%
% W = MAPPING(MAPPING_FILE, MAPPING_TYPE, DATA, LABELS, SIZE_IN, SIZE_OUT)
%
% A map/classifier object is constructed. It may be used to map a dataset A
% on anoth
www.eeworm.com/read/400577/11573314
p mapping.p
www.eeworm.com/read/262168/11603480
java mapping.java
import java.awt.*;
public class mapping extends machine {
machine root;
Panel flowtype,numbers,controls,baseline; //GUI declarations
mDrawing drawing;
Legend legend;