代码搜索:multidimensional

找到约 559 项符合「multidimensional」的源代码

代码结果 559
www.eeworm.com/read/255755/12057910

m mds.m

%MDS - Multidimensional Scaling - a variant of Sammon mapping % % [W,J,stress] = MDS(D,Y,OPTIONS) % [W,J,stress] = MDS(D,N,OPTIONS) % % INPUT % D Square (M x M) dissimilarity matrix %
www.eeworm.com/read/150905/12249189

m mds.m

%MDS - Multidimensional Scaling - a variant of Sammon mapping % % [W,J,stress] = MDS(D,Y,OPTIONS) % [W,J,stress] = MDS(D,N,OPTIONS) % % INPUT % D Square (M x M) dissimilarity matrix %
www.eeworm.com/read/149739/12353514

m mds.m

%MDS - Multidimensional Scaling - a variant of Sammon mapping % % [W,J,stress] = MDS(D,Y,OPTIONS) % [W,J,stress] = MDS(D,N,OPTIONS) % % INPUT % D Square (M x M) dissimilarity matrix %
www.eeworm.com/read/209339/15223166

m classicalmds.m

%Taken from www.socsi.uci.edu/~mdlee function [points,vaf]=classicalmds(distance,dimensions) % Classical multidimensional scaling, (michael.d.lee@dsto.defence.gov.au) % [points,vaf]=classicalmd
www.eeworm.com/read/208576/15243932

cpp fig07_22.cpp

// Fig. 7.22: fig07_22.cpp // Initializing multidimensional arrays. #include using std::cout; using std::endl; void printArray( const int [][ 3 ] ); // prototype int main() {
www.eeworm.com/read/344585/3207992

m mds.m

function mappedX = mds(X, no_dims) %MDS Run MDS on the data to get a low-dimensional visualization % % mappedX = mds(X, no_dims) % % Run multidimensional scaling on the dataset X to get a two-
www.eeworm.com/read/205036/15328827

m double.m

function A = double(X) %DOUBLE Convert tensor to double array. % % A = double(X) converts X to a standard multidimensional array. % % See also TENSOR. % %MATLAB Tensor Toolbox. %Copyright 2007, Sa
www.eeworm.com/read/161772/10376109

c random.c

/* random.c - Demonstrates using a multidimensional array */ #include #include /* Declare a three-dimensional array with 1000 elements */ int random_array[10][10][10]; in
www.eeworm.com/read/161772/10376141

c test.c

/* random.c - Demonstrates using a multidimensional array */ #include #include /* Declare a three-dimensional array with 1000 elements */ int random_array[64000][10]; int
www.eeworm.com/read/161772/10376447

c ptrmulti.c

/* Demonstrates passing a pointer to a multidimensional */ /* array to a function. */ #include void printarray_1(int (*ptr)[4]); void printarray_2(int (*ptr)[4], int n); int main(