subsref.m
来自「张量分析工具」· M 代码 · 共 160 行
M
160 行
function a = subsref(t,s)%SUBSREF Subscripted reference for a sparse tensor.%% We can extract elements or subtensors from a sparse tensor in the% following ways.%% Case 1a: y = X(i1,i2,...,iN), where each in is an index, returns a% scalar.%% Case 1b: Y = X(R1,R2,...,RN), where one or more Rn is a range and% the rest are indices, returns a sparse tensor. The elements are% renumbered here as appropriate.% % Case 2a: V = X(S) or V = X(S,'extract'), where S is a p x n array% of subscripts, returns a vector of p values.%% Case 2b: V = X(I) or V = X(I,'extract'), where I is a set of p% linear indices, returns a vector of p values.%% Any ambiguity results in executing the first valid case. This% is particularily an issue if ndims(X)==1. %% S = X.subs returns the subscripts of the nonzero entries in X.%% V = X.vals returns the values of the nonzero entries in X.%% Examples% X = sptensor([4,4,4;2,2,1;2,3,2],[3;5;1],[4 4 4]);% X(1,2,1) %<-- returns zero% X(4,4,4) %<-- returns 3% X(3:4,:,:) %<-- returns 2 x 4 x 4 sptensor% X(2,:,:) %<-- returns a 2 x 2 tensor% X([1,1,1;2,2,1]) %<-- returns a vector of 2 elements% X = sptensor([6;16;26],[1;1;1],30);% X([1:6]') %<-- extracts a subtensor% X([1:6]','extract') %<-- extracts a vector of 6 elements%% See also SPTENSOR, SPTENSOR/FIND, TENSOR/SUBSREF.%%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: subsref.m,v 1.17 2007/01/10 01:27:31 bwbader Exp $switch s(1).type case '{}' error('Subscript cell reference cannot be used with sptensor.') case '.' switch s(1).subs case {'subs','indices'} a = tt_subsubsref(t.subs, s); case {'vals','values'} a = tt_subsubsref(t.vals, s); case 'size' a = tt_subsubsref(t.size, s); otherwise error(['No such field: ', s(1).subs]); end return; case '()' % *** CASE 1: Rectangular Subtensor *** if (numel(s(1).subs) == ndims(t)) && ... ~isequal(s(1).subs{end},'extract') % Extract the subdimensions to be extracted from t region = s(1).subs; % Pare down the list of subscripts (and values) to only % those within the subdimensions specified by region. loc = subdims(region, t); subs = t.subs(loc,:); vals = t.vals(loc); % Find the size of the subtensor and renumber the % subscripts [subs, sz] = renumber(subs, size(t), region); % Determine the subscripts newsiz = []; % (future) new size kpdims = []; % dimensions to keep rmdims = []; % dimensions to remove % Determine the new size and what dimensions to keep for i = 1:length(region) if ischar(region{i}) && (region{i} == ':') newsiz = [newsiz size(t,i)]; kpdims = [kpdims i]; elseif numel(region{i}) > 1 newsiz = [newsiz numel(region{i})]; kpdims = [kpdims i]; else rmdims = [rmdims i]; end end % Return a single double value for a zero-order sub-tensor if isempty(newsiz) if isempty(vals) a = 0; else a = vals; end return; end % Assemble the resulting sparse tensor if isempty(subs) a = sptensor([],[],sz(kpdims)); else a = sptensor(subs(:,kpdims), vals, sz(kpdims)); end return; end % Case 2: EXTRACT % *** CASE 2a: Subscript indexing *** if size(s(1).subs{1},2) == ndims(t) % extract array of subscripts srchsubs = s(1).subs{1}; % *** CASE 2b: Linear indexing *** else % Error checking if numel(s(1).subs) ~= 1 error('Invalid indexing'); end idx = s(1).subs{1}; if ndims(idx) ~=2 || size(idx,2) ~= 1 error('Expecting a column index'); end % extract linear indices and convert to subscripts srchsubs = tt_ind2sub(size(t),idx); end a = extract(t,srchsubs); a = tt_subsubsref(a,s); return; otherwise error('Incorrect indexing into sptensor.')end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?