Skip to content

Commit

Permalink
replace "vec2mat" with "reshape" in w2Wb.m
Browse files Browse the repository at this point in the history
  • Loading branch information
yabata committed May 3, 2016
1 parent 49bf0c5 commit ad2d226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions matlab/w2Wb.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
w_i=inputs*layers(m); % Anzahl von Gewichten der Eingangsmatrix IW{m,i,d+1} (Matrix von Eingang i zu Schicht m für Verzögerung d)
vec=w_temp(1:w_i); % Elemente aus Gesamtgewichtsvektor auslesen
w_temp=w_temp(w_i+1:end); %Elemente aus temporären Gesamtgewichtsvektor entfernen
IW{m,i,d+1}=(vec2mat(vec,layers(m)))'; %Ausgelesenen Elemente von Vektor vec in Matrix umwamndeln
IW{m,i,d+1}=reshape(vec,layers(m),[]);%Ausgelesenen Elemente von Vektor vec in Matrix umwamndeln
end
end
end
Expand All @@ -38,7 +38,7 @@
w_i=layers(l)*layers(m); % Anzahl von Gewichten der Verbindungssmatrix LW{m,l,d+1} (Matrix von Schicht l zu Schicht m für Verzögerung d)
vec=w_temp(1:w_i); % Elemente aus Gesamtgewichtsvektor auslesen
w_temp=w_temp(w_i+1:end); %Elemente aus temporären Gesamtgewichtsvektor entfernen
LW{m,l,d+1}=(vec2mat(vec,layers(m)))'; %Ausgelesenen Elemente von Vektor vec in Matrix umwamndeln
LW{m,l,d+1}= reshape(vec,layers(m),[]);%Ausgelesenen Elemente von Vektor vec in Matrix umwamndeln
end
end

Expand Down

0 comments on commit ad2d226

Please sign in to comment.