代码搜索:Tensor

找到约 495 项符合「Tensor」的源代码

代码结果 495
www.eeworm.com/read/393865/8257708

m tensorwavkernel.m

function [kernel,KernelInfo]=tensorwavkernel(x,xsup,kerneloption) % USAGE % % [kernel,KernelInfo]=tensorwavkernel(x,xsup,kerneloption) % % Process a tensor product wavelet kernel. % the
www.eeworm.com/read/205036/15328885

m permute.m

function t = permute(t,order) %PERMUTE Rearrange the dimensions of a sparse tensor. % % B = PERMUTE(A,ORDER) rearranges the dimensions of A so that they % are in the order specified by the vector
www.eeworm.com/read/113576/15453041

m tensorwavkernel.m

function [kernel,KernelInfo]=tensorwavkernel(x,xsup,kerneloption) % USAGE % % [kernel,KernelInfo]=tensorwavkernel(x,xsup,kerneloption) % % Process a tensor product wavelet kernel. % the
www.eeworm.com/read/349569/3143362

py factorization.py

"""This module implementsq reordering of indices. Reordering of indices may be necessary in order to factor out common reference tensors from terms that have the same tensor structure but with differe
www.eeworm.com/read/473001/6853691

cpp matmult.cpp

/***************************************************************************** * matmult.cpp Blitz++ tensor notation example * * $Id: matmult.cpp,v 1.2 1997/07/16 19:38:23 tveldhui Exp $ *
www.eeworm.com/read/205036/15328893

m ne.m

function z = ne(x,y) %NE Not equal (~=) for sptensors. % % A ~= B compares the elements of A and B for equality. The arguments can % be a pair of sptensors, an sptensor and a tensor, or an sptenso
www.eeworm.com/read/205036/15328908

m eq.m

function z = eq(x,y) %EQ Equal (==) for sptensors. % % A == B compares the elements of A and B for equality. The arguments can % be a pair of sptensors, an sptensor and a tensor, or an sptensor an
www.eeworm.com/read/188324/8550711

m tspdem.m

%% The Tensor Product Construct % % Illustrate approximation to data on rectangular grid. % Copyright 1987-2005 C. de Boor and The MathWorks, Inc. % $Revision: 1.18.4.2 $ %% % Since the
www.eeworm.com/read/349569/3143378

py indexreordering.py

"""This module contains utilities for reordering of indices. Reordering of indices may be necessary in order to factor out common reference tensors from terms that have the same tensor structure but w
www.eeworm.com/read/473001/6853665

cpp outer.cpp

/***************************************************************************** * outer.cpp Blitz++ outer product (tensor notation) example * * $Id: outer.cpp,v 1.1 1997/07/16 19:38:23 tve