How to Apply Fuzzy TOPSIS on Array of Data stored in Excel File
2 views (last 30 days)
Show older comments
How can I execute FUZZY TOPSIS in MATLAB using creteria metrix entered in an excel file?
Thank you
0 Comments
Answers (1)
Walter Roberson
on 25 Mar 2025
There is no MATLAB toolbox that allows you to apply FUZZY TOPSIS to excel files.
There are only a small number of routines that will deal with excel files directly (besides routines to read and write excel files.) For example it is possible to create data stores directly from xls files... but it is not possible to (for example) directly compute the sum of all of the entries in an xls file.
The key to working with excel files is to first read the data in, and then as a seperate independent step, process the data.
The key ways to read excel files are readtable() and readmatrix() (and the older xlsread())
Once you have read in the data, you run into the problem that MATLAB has no FUZZY TOPSIS available. However, https://github.com/simoG265/FuzzyTopsis has FUZZY TOPSIS matlab code.
0 Comments
See Also
Categories
Find more on Fuzzy Logic Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!