-
Notifications
You must be signed in to change notification settings - Fork 21
/
tt_valscheck.m
31 lines (27 loc) · 958 Bytes
/
tt_valscheck.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
function ok = tt_valscheck(vals)
%TT_VALSCHECK Checks for valid values.
%
% TT_VALSCHECK(S) throws an error if S is not a valid values
% array, which means that S is a column array.
%
% X = TT_VALSCHECK(S) returns true if S is a valid and false otherwise.
%
%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 isempty(vals)
ok = true;
elseif ndims(vals) == 2 && size(vals,2) == 1
ok = true;
else
ok = false;
end
if ~ok && nargout == 0
error('Values must be a column array');
end