⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lt.m

📁 张量分析工具
💻 M
字号:
function z = lt(x,y)%LT Less than for sptensors.%%   See also SPTENSOR.%%MATLAB Tensor Toolbox.%Copyright 2007, Sandia Corporation. % This is the MATLAB Tensor Toolbox by Brett Bader and Tamara Kolda. % http://csmr.ca.sandia.gov/~tgkolda/TensorToolbox.% Copyright (2007) Sandia Corporation. Under the terms of Contract% DE-AC04-94AL85000, there is a non-exclusive license for use of this% work by or on behalf of the U.S. Government. Export of this data may% require a license from the United States Government.% The full license terms can be found in tensor_toolbox/LICENSE.txt% $Id: lt.m,v 1.4 2007/01/10 01:27:31 bwbader Exp $%% Observations for sparse matrix case.% The result of a < 5 is sparse.% The result of a < 0 is sparse.% The result of a < full(a) is sparse.%% Case 1: One argument is a scalarif isscalar(y)    subs1 = x.subs((x.vals < y),:);    if y > 0        subs2 = setdiff(allsubs(x),x.subs,'rows');    else        subs2 = [];    end    z = sptensor([subs1;subs2],true,size(x));    return;end% Call back with the arguments reversed.if isscalar(x)    z = gt(y,x);    return;end%% Case 2: Both x and y are tensors or some sort% Check that the sizes matchif ~isequal(x.size,y.size)    error('Size mismatch');end% Case 2a: Two sparse tensorsif isa(x,'sptensor') && isa(y,'sptensor')    % x not zero, y zero    subs1 = setdiff(x.subs,y.subs,'rows');    subs1 = subs1(extract(x,subs1) < 0, :);    % x zero, y not zero    subs2 = setdiff(y.subs,x.subs,'rows');    subs2 = subs2(extract(y,subs2) > 0, :);    % x and y not zero    subs3 = intersect(x.subs,y.subs,'rows');    subs3 = subs3(extract(x,subs3) < extract(y,subs3),:);        % assemble    z = sptensor([subs1;subs2;subs3],true,size(x));    return;end% Case 2b: y is a dense tensorif isa(y,'tensor')    % x zero and y > 0    subs1 = find(y > 0);    subs1 = setdiff(subs1,x.subs,'rows');        % x and y nonzero    subs2 = x.subs(x.vals < y(x.subs,'extract'),:);        % assemble    z = sptensor([subs1;subs2],true,size(x));        return;    end%% Otherwiseerror('The arguments must be two sptensors or an sptensor and a scalar.');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -