-
Notifications
You must be signed in to change notification settings - Fork 21
/
parafac_als.m
32 lines (27 loc) · 1 KB
/
parafac_als.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 [P,Uinit] = parafac_als(X,R,opts)
%PARAFAC_ALS Deprecated. Use CP_ALS instead.
%
% See also CP_ALS.
%
%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 (nargout == 2) & (nargin == 3)
[P,Uinit] = cp_als(X,R,opts);
elseif (nargout == 2) & (nargin == 2)
[P,Uinit] = cp_als(X,R);
elseif (nargout == 2) & (nargin == 1)
[P,Uinit] = cp_als(X);
elseif (nargout == 1) & (nargin == 3)
P = cp_als(X,R,opts);
elseif (nargout == 1) & (nargin == 2)
P = cp_als(X,R);
elseif (nargout == 1) & (nargin == 1)
P = cp_als(X);
end