/* Method: ScaleOutput

           Scale data in output vector before feed it to ann based on previously calculated parameters.

           See also:
           		        <DescaleOutput>, <ScaleInput>,
                <fann_scale_output at http://libfann.github.io/fann/docs/files/fann_train-h.html#fann_scale_output>

            This function appears in FANN >= 2.1.0.
         */
        public void ScaleOutput(DataAccessor output)
        {
            net.scale_output(output.Cast());
        }
        /* Method: ScaleInput

           Scale data in input vector before feed it to ann based on previously calculated parameters.

           See also:
           		        <DescaleInput>, <ScaleOutput>,
                <fann_scale_input at http://libfann.github.io/fann/docs/files/fann_train-h.html#fann_scale_input>

            This function appears in FANN >= 2.1.0.
         */
        public void ScaleInput(DataAccessor input)
        {
            net.scale_input(input.Cast());
        }