Skip to content

Instantly share code, notes, and snippets.

@fdomig
fdomig / ci_4_3.m
Created June 12, 2011 17:20 — forked from Wolfy42/ci_4_3.m
CI 4_3
%%%
% Feed forward with back propagation algorithm
%
% @param X ... all possible inputs (matrix)
% @param Y ... all expected outputs (matrix)
% @param T ... the network topology (matrix)
% @param l ... the iteration limit for the error min. func.
% @returns W ... the calculated weight matrix
% @returns Ev ... the error dynamic vector
%%
@fdomig
fdomig / ci_4_3.m
Created June 9, 2011 12:11 — forked from Wolfy42/ci_4_3.m
CI 4_3
%%%
% Feed forward with back propagation algorithm
%
% @param X ... all possible inputs
% @param Y ... all expected outputs
% @param T ... the network topology
% @param l ... the iteration limit for the error min. func.
% @returns W ... the optimal weight matrix
% @returns Ev ... the error dynamic vector
%%
@fdomig
fdomig / ci_4_3.m
Created June 9, 2011 11:19 — forked from Wolfy42/ci_4_3.m
CI 4_3
%%%
% Feed forward with back propagation algorithm
%
% @param X ... all possible inputs
% @param Y ... all expected outputs
% @param T ... the network topology
% @param l ... the iteration limit for the error min. func.
% @returns W ... the optimal weight matrix
% @returns Ev ... the error dynamic vector
%%