/usr/lib/scilab-ann/demos/enc838_m.sce is in scilab-ann 0.4.2.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | // ==================================================
// Tight 8-3-8 encoder
// on a backpropagation ANN with biases and momentum
// ==================================================
FILENAMEDEM = "enc838_m";
lines(0);
scepath = get_absolute_file_path(FILENAMEDEM+".sce");
exec(scepath+FILENAMEDEM+".sci",1);
clear scepath;
clear FILENAMEDEM;
// ==================================================
|