Skip to content

Commit 02376a8

Browse files
authored
Update PQSQRegression.m
1 parent ed12b27 commit 02376a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PQSQRegression.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function [b, intercept] = PQSQRegression(X, Y, varargin)
2-
%lassoPQSQ calculates PQSQ approximation for lasso regression.
2+
%PQSQRegression calculates PQSQ approximation for lasso regression.
33
%Syntax
44
% [b, intercept] = PQSQRegression(X, Y)
55
% [b, intercept] = PQSQRegression(X, Y, Name, Value)
@@ -262,4 +262,4 @@
262262
B(1:p-1) = (pxk(2:p).*sxk(1:p-1)-pxk(1:p-1).*sxk(2:p))./...
263263
(sxk(1:p-1)-sxk(2:p));
264264
B(p) = pxk(p);
265-
end
265+
end

0 commit comments

Comments
 (0)