UNPKG

ahp-calc

Version:

AHP (Analytical Hierarchy Process) is a decision-making method that helps break down complex problems into a hierarchy of simpler comparisons. It uses pairwise comparisons and mathematical calculations to rank alternatives based on criteria.

7 lines (6 loc) 212 B
/** * Mengubah nilai sel string (misalnya "1/3") menjadi number. * @param cell Nilai string yang merepresentasikan rasio * @returns Nilai numerik */ export declare function convertCell(cell: string): number;