/usr/lib/scilab-ann/demos/encoder.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 | // ==================================================
// Tight 4-2-4 encoder on a backpropagation ANN
// ==================================================
FILENAMEDEM = "encoder";
lines(0);
scepath = get_absolute_file_path(FILENAMEDEM+".sce");
exec(scepath+FILENAMEDEM+".sci",1);
clear scepath;
clear FILENAMEDEM;
// ==================================================
|