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

📄 squeeze.m

📁 张量分析工具
💻 M
字号:
function Y = squeeze(X)%SQUEEZE Remove singleton dimensions from a tensor.%%   Y = SQUEEZE(X) returns a tensor Y with the same elements as%   X but with all the singleton dimensions removed.  A singleton%   is a dimension such that size(X,dim)==1.  %%   If X has *only* singleton dimensions, then Y is a scalar.%%   Examples%   squeeze( tenrand([2,1,3]) ) %<-- returns a 2-by-3 tensor%   squeeze( tenrand([1 1]) ) %<-- returns a scalar%%   See also TENSOR.% %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: squeeze.m,v 1.7 2007/01/10 01:27:31 bwbader Exp $if all(X.size > 1)  % No singleton dimensions to squeeze  Y = X;else  idx = find(X.size > 1);  if numel(idx) == 0    % Scalar case - only singleton dimensions    Y = X.data;  else    siz = X.size(idx);    Y = tensor(squeeze(X.data),siz);  endendreturn;

⌨️ 快捷键说明

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