代码搜索:Mapping
找到约 10,000 项符合「Mapping」的源代码
代码结果 10,000
www.eeworm.com/read/204888/15331936
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/203574/15355514
m mapping.m
function X = mapping(n)
if n == 2
X = [1 2; 3 4];
else
B = mapping(n/2);
X = [B B+(n/2)^2; B+(n/2)^2*2 B+(n/2)^2*3];
end
www.eeworm.com/read/102108/15792995
avi mapping.avi
www.eeworm.com/read/102108/15793028
mdl mapping.mdl
(object Petal
version 40)
(object Design "Logical View"
is_unit TRUE
is_loaded TRUE
file_name "C:\\My Documents\\Tutorials\\General\\Mapping.mdl"
quid
www.eeworm.com/read/289743/8530133
m compute_mapping.m
function [mappedA, mapping] = compute_mapping(A, type, no_dims, varargin)
%COMPUTE_MAPPING Performs dimensionality reduction on a dataset A
%
% mappedA = compute_mapping(A, type)
% mappedA = compu
www.eeworm.com/read/188397/8543712
doc constellation_mapping.doc
www.eeworm.com/read/428216/8883193
h dma-mapping.h
/*
* (C) Copyright 2007
* Stelian Pop
* Lead Tech Design
*
* See file CREDITS for list of people who contributed to this
* project.
*
www.eeworm.com/read/282683/9074353
m compute_mapping.m
function [mappedA, mapping] = compute_mapping(A, type, no_dims, varargin)
%COMPUTE_MAPPING Performs dimensionality reduction on a dataset A
%
% mappedA = compute_mapping(A, type)
% mappedA = compu