Parses a matrix of pairwise comparisons into a string.

This function parses a matrix of pairwise comparisons into a string.
69 Downloads
Updated 17 Apr 2015

View License

This function parses a matrix of pairwise comparisons into a string.
Example:
inputM = [ 0 1 1; 0 0 1; 0 0 0]
% >> inputM =
0 1 1
0 0 1
0 0 0
elements = {'a', 'b', 'c'};
outStr=PairwiseCompareMatrix2Str(inputM, elements)
>> outStr =
'a>b,c; b>c'

Cite As

Wei-Rong Chen (2024). Parses a matrix of pairwise comparisons into a string. (https://www.mathworks.com/matlabcentral/fileexchange/50540-parses-a-matrix-of-pairwise-comparisons-into-a-string), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2008a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Tags Add Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.1.0.0

.

1.0.0.0