-
Notifications
You must be signed in to change notification settings - Fork 21
/
tenones.m
34 lines (29 loc) · 894 Bytes
/
tenones.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
function X = tenones(varargin)
%TENONES Ones tensor.
%
% X = TENONES(SZ) forms a tensor of size SZ with all ones.
%
% TENONES(SZ) is equivalent to TENSOR(ONES(SZ(1),SZ(2),...),SZ).
%
% See also TENSOR, ONES.
%
%MATLAB Tensor Toolbox.
%Copyright 2015, Sandia Corporation.
% This is the MATLAB Tensor Toolbox by T. Kolda, B. Bader, and others.
% http://www.sandia.gov/~tgkolda/TensorToolbox.
% Copyright (2015) 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 the file LICENSE.txt
if nargin == 1
sz = varargin{1};
else
sz = cell2mat(varargin);
end
if isempty(sz)
X = tensor();
return;
end
data = ones([sz 1 1]);
X = tensor(data,sz);