


% -*- texinfo -*-
% @deftypefn {Function File} {}@var{pn} = trastd (@var{p},@var{meanp},@var{stdp})
% @code{trastd} preprocess additional data for neural network simulation.
%
% @example
% @code{p} : test input data
% @code{meanp}: vector with standardization parameters of prestd(...)
% @code{stdp} : vector with standardization parameters of prestd(...)
%
% meanp = [2.5; 6.5];
% stdp = [1.2910; 1.2910];
% p = [1 4; 2 5];
%
% pn = trastd(p,meanp,stdp);
% @end example
% @noindent
% @end deftypefn