Skip to content

Commit b1b1705

Browse files
authored
Merge pull request #132 from netZoo/devel
Devel
2 parents 8329578 + a22dd36 commit b1b1705

File tree

2 files changed

+664
-666
lines changed

2 files changed

+664
-666
lines changed

netZooM/otter/otter.m

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020

2121
%global parameters
2222
if nargin<4
23-
lambda = 0.0035;
23+
lambda = 0.035;
2424
end
2525
if nargin<5
2626
gamma = 0.335;
2727
end
2828
if nargin<6
29-
Imax = 32;
29+
Imax = 60;
3030
end
3131
if nargin<7
3232
eta = 0.00001;
@@ -37,9 +37,7 @@
3737
eps = 0.00000001;
3838
%initial transformation
3939
C = C/trace(C);
40-
P = P+2.2;
41-
W = P*W;
42-
W = W/trace(W*W');
40+
W = W/sqrt(trace(W*W'));
4341
P = P/trace(P);
4442

4543
[t, g] = size(W);

0 commit comments

Comments
 (0)