Fixed Error in GL derivative
This commit is contained in:
parent
13d640527c
commit
c2e265b407
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ elseif regType == "GL" # Grünwald-Letnikov fractional derivative regulariztion
|
|||
regMat = zeros(p,p);
|
||||
|
||||
for i in 1:p
|
||||
regMat[i:end, i] = regMat[1:end-i+1];
|
||||
regMat[i:end, i] = C[1:end-i+1];
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue