accord-net / framework

Machine learning, computer vision, statistics and general scientific computing for .NET
http://accord-framework.net
GNU Lesser General Public License v2.1
4.48k stars 1.99k forks source link

KD Tree Distance Example report Error (non-Delegate method) #1233

Open GritBear opened 6 years ago

GritBear commented 6 years ago

What would you like to submit? (put an 'x' inside the bracket that applies)

Issue description

tree.Distance = Accord.Math.Distance.Manhattan; This line on page: http://accord-framework.net/docs/html/T_Accord_Collections_KDTree_1.htm

Returns can not convert method group to non-delegate type IMetric<double[]>

What did I missed?

ericgarza70 commented 6 years ago

Perhaps you wanted this: tree.Distance = new Accord.Math.Distances.Manhattan();