代码搜索:Tensor
找到约 495 项符合「Tensor」的源代码
代码结果 495
www.eeworm.com/read/205036/15328919
m tenmat.m
function A = tenmat(varargin)
%TENMAT Create a matricized tensor.
%
% A = TENMAT(T, RDIMS) creates a matrix representation of a tensor
% T. The dimensions (or modes) specified in RDIMS map to the
www.eeworm.com/read/205036/15328850
m contents.m
% Algorithms for the Tensor Toolbox
%
% Files
% parafac_als - Compute a PARAFAC decomposition of any type of tensor.
% tucker_als - Higher-order orthogonal iteration.
www.eeworm.com/read/205036/15328861
m transpose.m
function transpose(x)
%TRANSPOSE is not defined on sparse tensors.
%
% See also SPTENSOR/PERMUTE.
%
%MATLAB Tensor Toolbox.
%Copyright 2007, Sandia Corporation.
% This is the MATLAB Tensor
www.eeworm.com/read/205036/15328864
m or.m
function C = or(A,B)
%OR Logical OR (|) for sptensors.
%
% See also SPTENSOR.
%
%MATLAB Tensor Toolbox.
%Copyright 2007, Sandia Corporation.
% This is the MATLAB Tensor Toolbox by Brett Bader and
www.eeworm.com/read/205036/15328905
m and.m
function C = and(A,B)
%AND Logical AND (&) for sptensors.
%
% See also SPTENSOR.
%
%MATLAB Tensor Toolbox.
%Copyright 2007, Sandia Corporation.
% This is the MATLAB Tensor Toolbox by Brett Bader a
www.eeworm.com/read/214051/15115140
m norm_response_coefficients.m
function [R_S_norm,R_J_norm,R_S_2_norm,R_J_2_norm] = norm_response_coefficients(S,J,par,R_S,R_J,R_S_2,R_J_2,used_J)
%[R_S_norm,R_J_norm,R_S_2_norm,R_J_2_norm] = norm_response_coefficients(S,J,par,R_S
www.eeworm.com/read/205036/15328859
m squeeze.m
function Y = squeeze(X)
%SQUEEZE Remove singleton dimensions from a sparse tensor.
%
% Y = SQUEEZE(X) returns a sparse tensor Y with the same elements as
% X but with all the singleton dimensions
www.eeworm.com/read/205036/15328895
m ones.m
function t = ones(t)
%ONES Replace nonzero elements of sparse tensor with ones.
%
% S = ONES(T) generates a sparse tensor with the same sparsity
% structure as T, but with ones in the nonzero posi
www.eeworm.com/read/205036/15328909
m not.m
function y = not(x)
%NOT Logical NOT (~) for sptensors.
%
% ~X performs a logical not on the input tensor X. The result always
% returned as a sparse tensor.
%
% See also SPTENSOR.
%
%MATLAB Ten
www.eeworm.com/read/211845/15172386