Table of Contents

Enum IsomapPathAlgorithm

Namespace
AiDotNet.Preprocessing.DimensionalityReduction
Assembly
AiDotNet.dll

Specifies the shortest path algorithm for Isomap.

public enum IsomapPathAlgorithm

Fields

Dijkstra = 1

Dijkstra's algorithm (O(n² log n) for all pairs).

FloydWarshall = 0

Floyd-Warshall algorithm (O(n³), finds all pairs).