代码搜索:Tensor

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

代码结果 495
www.eeworm.com/read/205036/15328925

m mtimes.m

function C = mtimes(A,B) %MTIMES Multiplies two tenmat objects. % % C = MTIMES(A,B) computes the product of A and B. The result is a % TENMAT object and can be transformed into a tensor. % % C = MT
www.eeworm.com/read/205036/15328982

m double.m

function A = double(T) %DOUBLE Convert ttensor to double array. % % A = double(T) converts T to a standard multidimensional array. % % See also TTENSOR. % %MATLAB Tensor Toolbox. %Copyrigh
www.eeworm.com/read/205036/15329002

m mtimes.m

function C = mtimes(A,B) %MTIMES Implement A*B (scalar multiply) for ktensor. % % C = mtimes(A,B) computes A * B where A is a Kruskal tensor and B is % a scalar (or vice versa). The result C is th
www.eeworm.com/read/205036/15328788

m times.m

function Z = times(X,Y) %TIMES Array multiplication for tensors. % % TIMES(A,B) is called for the syntax 'A .* B' when A or B is a % tensor. A and B must have the same size, unless one is a scala
www.eeworm.com/read/205036/15328793

m minus.m

function Z = minus(X,Y) %MINUS Binary subtraction (-) for tensors. % % MINUS(A,B) is called for the syntax 'A - B' when A or B is a tensor. A % and B must have the same size, unless one is a scala
www.eeworm.com/read/205036/15328833

m full.m

function B = full(A) %FULL Convert a sptenmat to a (dense) tenmat. % % B = FULL(A) converts a sptenmat A to a (dense) tenmat B. % % See also SPTENMAT, TENMAT. % %MATLAB Tensor Toolbox. %Copyright
www.eeworm.com/read/205036/15328847

m double.m

function A = double(T) %DOUBLE Convert a sptenmat to a sparse matrix. % % A = double(T) converts T stored as a SPTENMAT to a sparse matrix. % % See also SPTENMAT. % %MATLAB Tensor Toolbox. %Copyri
www.eeworm.com/read/205036/15328900

m extract.m

function a = extract(t,srchsubs) %EXTRACT Extract value for a sptensor. % % EXTRACT(X,SUBS) returns a list of values. % % See also SPTENSOR/SUBSREF. % %MATLAB Tensor Toolbox. %Copyright 2
www.eeworm.com/read/205036/15329009

m double.m

function A = double(X) %DOUBLE Convert a ktensor to a double array. % % A = double(X) converts X to a standard multidimensional array. % % See also KTENSOR. % %MATLAB Tensor Toolbox. %Copyright 20
www.eeworm.com/read/161500/10400526

hxx as_matrix.hxx

// Header for matrix. // This class stands for a 3x3 Euclidean affine transformation. // Note that it is NOT a tensor. #if !defined( MATRIX_CLASS ) #define MATRIX_CLASS #include "as_vector.hxx"