Accord.Math.Environments.OctaveEnvironment.retm.this C# (CSharp) Method

this() public method

Can be used to set output arguments to the output of another function.
public this ( ) : List
return List
            public List<mat> this[params mat[] a]
            {
                set
                {
                    int i = 0;
                    foreach (var m in value)
                    {
                        a[i++].matrix = m.matrix;
                    }
                }
            }
        }
OctaveEnvironment.retm